From 0d24253ec785336db74a2f228beed3c2a71e72e7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?David=20H=C3=B6ppner?= <0xffea@gmail.com> Date: Tue, 2 Feb 2010 13:16:01 +0100 Subject: [PATCH] New formula FluidSynth FluidSynth is a real-time software synthesizer based on the SoundFont 2 specifications. --- Formula/fluid-synth.rb | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 Formula/fluid-synth.rb diff --git a/Formula/fluid-synth.rb b/Formula/fluid-synth.rb new file mode 100644 index 00000000000..9242f656b7c --- /dev/null +++ b/Formula/fluid-synth.rb @@ -0,0 +1,18 @@ +require 'formula' + +class FluidSynth :optional + + def install + system "./configure", "--prefix=#{prefix}", "--disable-debug", "--disable-dependency-tracking" + system "make install" + end +end