blob: 10a91b07d3192c78261cb8fb8ca60a145203ed9d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
require 'formula'
class Libsamplerate <Formula
@homepage='http://www.mega-nerd.com/SRC'
@url='http://www.mega-nerd.com/SRC/libsamplerate-0.1.7.tar.gz'
@md5='ad093e60ec44f0a60de8e29983ddbc0f'
def install
system "./configure --disable-debug --prefix='#{prefix}'"
system "make install"
end
end
|