diff options
| author | David Höppner | 2010-02-02 13:16:01 +0100 |
|---|---|---|
| committer | David Höppner | 2010-02-02 13:16:01 +0100 |
| commit | 2559269e439bcb70a6e17af128c29f59c856fcf3 (patch) | |
| tree | df2b043209d0eb08909c9e07708ee7ccb84bce05 /Library/Formula | |
| parent | 102be68081bbdbbcd3011c80fafa6426cba0b14d (diff) | |
| download | homebrew-2559269e439bcb70a6e17af128c29f59c856fcf3.tar.bz2 | |
New formula FluidSynth
FluidSynth is a real-time software synthesizer based on the SoundFont 2 specifications.
Diffstat (limited to 'Library/Formula')
| -rw-r--r-- | Library/Formula/fluid-synth.rb | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/Library/Formula/fluid-synth.rb b/Library/Formula/fluid-synth.rb new file mode 100644 index 000000000..9242f656b --- /dev/null +++ b/Library/Formula/fluid-synth.rb @@ -0,0 +1,18 @@ +require 'formula' + +class FluidSynth <Formula + url 'http://mirrors.zerg.biz/nongnu/fluid/fluidsynth-1.1.1.tar.gz' + homepage 'http://fluidsynth.resonance.org/trac' + md5 '0db3da78028d255026230809c6e21b44' + + aka 'fluidsynth' + + depends_on 'pkg-config' + depends_on 'glib' + depends_on 'libsndfile' => :optional + + def install + system "./configure", "--prefix=#{prefix}", "--disable-debug", "--disable-dependency-tracking" + system "make install" + end +end |
