blob: 04b9584cbc2cf70d820845327944547ee0976025 (
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
|