homebrew-core/Formula/fluid-synth.rb

17 lines
471 B
Ruby
Raw Normal View History

require 'formula'
2011-03-10 05:11:03 +00:00
class FluidSynth < Formula
url 'http://sourceforge.net/projects/fluidsynth/files/fluidsynth-1.1.3/fluidsynth-1.1.3.tar.gz'
2011-07-21 16:00:22 +00:00
homepage 'http://www.fluidsynth.org/'
md5 '0d3e3cc770b4da413010dfb7dfdce9c8'
depends_on 'pkg-config' => :build
depends_on 'glib'
depends_on 'libsndfile' => :optional
def install
system "./configure", "--prefix=#{prefix}", "--disable-debug", "--disable-dependency-tracking"
system "make install"
end
end