blob: f8aeebccbc34fa04d342240b116435d92ec45379 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
require 'formula'
class Jack < Formula
homepage 'http://jackaudio.org'
url 'http://www.grame.fr/~letz/jack-1.9.7.tar.bz2'
sha1 '0a344fd962666f7c95969da0576ac0228e71b30d'
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
fails_with :clang do
cause 'waf fails to find g++ when compiling with clang'
end
def install
ENV['LINKFLAGS'] = ENV.ldflags
system "./waf","configure", "--prefix=#{prefix}"
system "./waf","build"
system "./waf","install"
end
end
|