88779ade49
Closes Homebrew/homebrew#14653.
17 lines
476 B
Ruby
17 lines
476 B
Ruby
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/'
|
|
sha1 'a71318211611a00bd3d595b0830d2188938ff89d'
|
|
|
|
depends_on 'pkg-config' => :build
|
|
depends_on 'libsndfile'
|
|
|
|
def install
|
|
system "./configure", "--prefix=#{prefix}",
|
|
"--disable-static",
|
|
"--enable-shared"
|
|
system "make install"
|
|
end
|
|
end
|