diff options
| -rw-r--r-- | Library/Formula/jack.rb | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/Library/Formula/jack.rb b/Library/Formula/jack.rb index d13ac0cc5..f8aeebccb 100644 --- a/Library/Formula/jack.rb +++ b/Library/Formula/jack.rb @@ -1,9 +1,9 @@ require 'formula' class Jack < Formula - url 'http://www.grame.fr/~letz/jack-1.9.7.tar.bz2' homepage 'http://jackaudio.org' - md5 '9759670feecbd43eeccf1c0f743ec199' + url 'http://www.grame.fr/~letz/jack-1.9.7.tar.bz2' + sha1 '0a344fd962666f7c95969da0576ac0228e71b30d' depends_on 'celt' depends_on 'libsamplerate' @@ -13,9 +13,13 @@ class Jack < Formula "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","configure", "--prefix=#{prefix}" system "./waf","build" system "./waf","install" end |
