aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
authorAlex Van Damme2011-12-29 21:11:59 -0600
committerMisty De Meo2011-12-30 17:24:23 -0600
commit1d48ab1e1cf15b9ec6cb7fe6681ff67e61688ec0 (patch)
tree991fb015cb98f707e4bcbfd2786ad3ac72a271f8 /Library/Formula
parent8c5ad8b0f38d84770389bcfe61fe4355791be989 (diff)
downloadhomebrew-1d48ab1e1cf15b9ec6cb7fe6681ff67e61688ec0.tar.bz2
New formula: CLAM 1.40
CLAM (C++ Library for Audio and Music) is a library for analysis, synthesis, and transformation of audio signals. Project is located at http://clam-project.org Closes #9330. Signed-off-by: Misty De Meo <mistydemeo@gmail.com>
Diffstat (limited to 'Library/Formula')
-rw-r--r--Library/Formula/clam.rb23
1 files changed, 23 insertions, 0 deletions
diff --git a/Library/Formula/clam.rb b/Library/Formula/clam.rb
new file mode 100644
index 000000000..7b0300f36
--- /dev/null
+++ b/Library/Formula/clam.rb
@@ -0,0 +1,23 @@
+require 'formula'
+
+class Clam < Formula
+ url 'http://clam-project.org/download/src/CLAM-1.4.0.tar.gz'
+ homepage 'http://clam-project.org'
+ md5 '614bb957a7aeecc667e144a46a1b87d2'
+
+ depends_on 'scons' => :build
+ depends_on 'xerces-c'
+ depends_on 'fftw'
+ depends_on 'libsndfile'
+ depends_on 'libvorbis'
+ depends_on 'mad'
+ depends_on 'jack'
+ depends_on 'portaudio'
+ depends_on 'id3lib'
+
+ def install
+ system "scons configure prefix=#{prefix} with_ladspa=no xmlbackend=none"
+ system "scons"
+ system "scons install"
+ end
+end