aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJan Berkel2010-10-20 13:22:24 +0200
committerAdam Vandenberg2010-10-21 07:03:01 -0700
commitad3a565fc2b40851c58443e229a78eeeb59f1750 (patch)
tree8724ed658a171e249df54f03475100e608e76c3e
parent959edff75eab0e950d38be441c75f7c72c5210a0 (diff)
downloadhomebrew-ad3a565fc2b40851c58443e229a78eeeb59f1750.tar.bz2
Use Jack2 by default
The original tarball is no longer downloadable, and development continues on the Jack2 branch. Jack2 promises 0.118 compatibility. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
-rw-r--r--Library/Formula/jack.rb17
1 files changed, 12 insertions, 5 deletions
diff --git a/Library/Formula/jack.rb b/Library/Formula/jack.rb
index 8812b365a..b940fee69 100644
--- a/Library/Formula/jack.rb
+++ b/Library/Formula/jack.rb
@@ -1,14 +1,21 @@
require 'formula'
class Jack <Formula
- url 'http://jackaudio.org/downloads/jack-audio-connection-kit-0.118.0.tar.gz'
+ url 'http://www.grame.fr/~letz/jack-1.9.6.tar.bz2'
homepage 'http://jackaudio.org'
- md5 'd58e29a55f285d54e75134cec8e02a10'
+ md5 'fcd4bdb44f51d71c9e19bc1d0e887902'
- depends_on 'pkg-config' => :build
+ depends_on 'celt'
+ depends_on 'libsamplerate'
+
+ def patches
+ # default build assumes ppc+i386, changed to i386+x86_64
+ "http://gist.github.com/raw/636194/jack-1.9.6_homebrew.patch"
+ end
def install
- system "./configure", "--disable-debug", "--disable-dependency-tracking", "--prefix=#{prefix}"
- system "make install"
+ system "./waf configure --prefix=#{prefix}"
+ system "./waf build"
+ system "./waf install"
end
end