blob: abf0648dae58d310e4332b9006004a51771390c8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
require 'formula'
class Libfishsound < Formula
url 'http://downloads.xiph.org/releases/libfishsound/libfishsound-1.0.0.tar.gz'
homepage 'http://xiph.org/fishsound/'
md5 '02c5c7b361a35c9da3cf311d68800dab'
depends_on 'pkg-config' => :build
depends_on 'libvorbis'
depends_on 'speex' => :optional
depends_on 'flac' => :optional
def install
system "./configure", "--disable-debug", "--disable-dependency-tracking", "--prefix=#{prefix}"
system "make install"
end
end
|