diff options
| author | Adam Vandenberg | 2012-06-12 20:31:11 -0700 |
|---|---|---|
| committer | Adam Vandenberg | 2012-06-12 20:31:26 -0700 |
| commit | cf9622731c2668d265c709500dd244a65794e96f (patch) | |
| tree | 40acd6c97b4756d4786e578c48259d3608c4ce6d | |
| parent | 906e962250217537dfdcf126e6fa8af40d9c62db (diff) | |
| download | homebrew-cf9622731c2668d265c709500dd244a65794e96f.tar.bz2 | |
jack: mark as fails with clang
| -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 |
