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 Homebrew/homebrew#9330. Signed-off-by: Misty De Meo <mistydemeo@gmail.com>
This commit is contained in:
parent
7e56859a4a
commit
54fcbc8dac
1 changed files with 23 additions and 0 deletions
23
Formula/clam.rb
Normal file
23
Formula/clam.rb
Normal file
|
@ -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
|
Loading…
Reference in a new issue