22 lines
536 B
Ruby
22 lines
536 B
Ruby
require 'formula'
|
|
|
|
class Jack < Formula
|
|
url 'http://www.grame.fr/~letz/jack-1.9.7.tar.bz2'
|
|
homepage 'http://jackaudio.org'
|
|
md5 '9759670feecbd43eeccf1c0f743ec199'
|
|
|
|
depends_on 'celt'
|
|
depends_on 'libsamplerate'
|
|
|
|
# default build assumes ppc+i386, changed to i386+x86_64
|
|
def patches
|
|
"https://gist.github.com/raw/636194/jack-1.9.6_homebrew.patch"
|
|
end
|
|
|
|
def install
|
|
ENV['LINKFLAGS'] = ENV['LDFLAGS']
|
|
system "./waf","configure","--prefix=#{prefix}"
|
|
system "./waf","build"
|
|
system "./waf","install"
|
|
end
|
|
end
|