blob: 8812b365a11c609365dae89a6cfeefa8a761429c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
require 'formula'
class Jack <Formula
url 'http://jackaudio.org/downloads/jack-audio-connection-kit-0.118.0.tar.gz'
homepage 'http://jackaudio.org'
md5 'd58e29a55f285d54e75134cec8e02a10'
depends_on 'pkg-config' => :build
def install
system "./configure", "--disable-debug", "--disable-dependency-tracking", "--prefix=#{prefix}"
system "make install"
end
end
|