homebrew-core/Formula/fluid-synth.rb
Victor Martinez 8dc451e3e2 Fixed several broken sourceforge.net download locations
Closes Homebrew/homebrew#20645.

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2013-06-30 12:17:57 -07:00

19 lines
532 B
Ruby

require 'formula'
class FluidSynth < Formula
homepage 'http://www.fluidsynth.org'
url 'http://downloads.sourceforge.net/project/fluidsynth/fluidsynth-1.1.6/fluidsynth-1.1.6.tar.gz'
sha1 '155de731e72e91e1d4b7f52c33d8171596fbf244'
depends_on 'pkg-config' => :build
depends_on 'cmake' => :build
depends_on 'glib'
depends_on 'libsndfile' => :optional
def install
mkdir 'build' do
system "cmake", "..", "-Denable-framework=OFF", "-DLIB_SUFFIX=", *std_cmake_args
system "make install"
end
end
end