aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/libbs2b.rb
blob: e1260600b2f832a6bbda5171d3e4cb14f83cfb1e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
require 'formula'

class Libbs2b < Formula
  url 'http://downloads.sourceforge.net/project/bs2b/libbs2b/3.1.0/libbs2b-3.1.0.tar.gz'
  homepage 'http://bs2b.sourceforge.net/'
  md5 '2c3351f1785364107aabc44f67d33d84'

  depends_on 'pkg-config' => :build
  depends_on 'libsndfile'

  def install
    system "./configure", "--prefix=#{prefix}",
                          "--disable-static",
                          "--enable-shared"
    system "make install"
  end
end