blob: 6fda2b511172577f71ec67038f859be471a44f87 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
require 'formula'
class FluidSynth < Formula
url 'http://sourceforge.net/projects/fluidsynth/files/fluidsynth-1.1.3/fluidsynth-1.1.3.tar.gz'
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
|