aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
authorDominyk Tiller2015-02-24 14:44:07 +0000
committerJack Nagel2015-02-28 12:52:07 -0500
commit99e0353199566d1dc9cd60f68f91e4d50f37c5b8 (patch)
tree88bc26b0339f0ba10b121809d82dfe5c97538658 /Library/Formula
parentb6f57cd4842953c50785c90980603c835e436279 (diff)
downloadhomebrew-99e0353199566d1dc9cd60f68f91e4d50f37c5b8.tar.bz2
jack: remove dead celt dep
Removed Celt in https://github.com/Homebrew/homebrew/commit/45f47a5e73ab8f506231c30e42a7 53a0cb841832 which upset Jack. I ran a `brew uses` beforehand but apparently missed the one-formula reply because I was particularly stupid at the time. It builds and works fine without it. Celt at best should have been a recommended or optional dep, I suspect. Opus has indeed replaced Celt, but because they merged it into Opus and ditched the Celt name, Jack doesn’t know how to find it under the new name. Either upstream hasn’t done anything about the change, or it hasn’t been reported, I guess. Closes #37134 Closes #37146. Signed-off-by: Jack Nagel <jacknagel@gmail.com>
Diffstat (limited to 'Library/Formula')
-rw-r--r--Library/Formula/jack.rb16
1 files changed, 7 insertions, 9 deletions
diff --git a/Library/Formula/jack.rb b/Library/Formula/jack.rb
index 58b91a676..dd3b97a89 100644
--- a/Library/Formula/jack.rb
+++ b/Library/Formula/jack.rb
@@ -1,5 +1,3 @@
-require 'formula'
-
# This now builds a version of JACKv1 which matches the current API
# for JACKv2. JACKv2 is not buildable on a number of Mac OS X
# distributions, and the JACK team instead suggests installation of
@@ -8,7 +6,7 @@ require 'formula'
# operate fine.
# Please see https://github.com/Homebrew/homebrew/pull/22043 for more info
class Jack < Formula
- homepage 'http://jackaudio.org'
+ homepage "http://jackaudio.org"
url "http://jackaudio.org/downloads/jack-audio-connection-kit-0.124.1.tar.gz"
sha1 "e9ba4a4c754ec95fbe653dcf7344edd6cc47cd60"
@@ -19,10 +17,10 @@ class Jack < Formula
sha1 "01f34e585df06210bfc2f06d07d1ef7058d17f67" => :mountain_lion
end
- depends_on 'berkeley-db'
- depends_on 'celt'
- depends_on 'libsndfile'
- depends_on 'libsamplerate'
+ depends_on "pkg-config" => :build
+ depends_on "berkeley-db"
+ depends_on "libsndfile"
+ depends_on "libsamplerate"
# Change pThread header include from CarbonCore
patch :p0, :DATA if MacOS.version >= :mountain_lion
@@ -54,9 +52,9 @@ class Jack < Formula
end
def install
- ENV['LINKFLAGS'] = ENV.ldflags
+ ENV["LINKFLAGS"] = ENV.ldflags
system "./configure", "--prefix=#{prefix}"
- system "make","install"
+ system "make", "install"
end
end