aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/clam.rb
blob: fc5a53c1f79988f28df3f2da11ee559711806c67 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
require 'formula'

class Clam < Formula
  homepage 'http://clam-project.org'
  url 'http://clam-project.org/download/src/CLAM-1.4.0.tar.gz'
  sha1 '32acbdc64e641b4a666e8e58e008430a6a906cd0'

  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
    scons "configure", "prefix=#{prefix}", "with_ladspa=no", "xmlbackend=none"
    scons
    scons "install"
  end
end