72 lines
2.2 KiB
Ruby
72 lines
2.2 KiB
Ruby
# 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
|
|
# JACKOSX, a pre-built binary form for which the source is not available.
|
|
# If you require JACKv2, you should use that. Otherwise, this formula should
|
|
# operate fine.
|
|
# Please see https://github.com/Homebrew/homebrew/pull/22043 for more info
|
|
class Jack < Formula
|
|
homepage "http://jackaudio.org"
|
|
url "http://jackaudio.org/downloads/jack-audio-connection-kit-0.124.1.tar.gz"
|
|
sha1 "e9ba4a4c754ec95fbe653dcf7344edd6cc47cd60"
|
|
|
|
bottle do
|
|
revision 2
|
|
sha1 "d81b70761532c0ab23e4ad05d1637a097a54013d" => :yosemite
|
|
sha1 "76ccc2252a0fd976c6e90e3473c1e3013646e7b3" => :mavericks
|
|
sha1 "31a06a65e0b68251172b1816df8c37bfdde7f5bd" => :mountain_lion
|
|
end
|
|
|
|
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
|
|
|
|
plist_options :manual => "jackd -d coreaudio"
|
|
|
|
def plist; <<-EOS.undent
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
|
|
<plist version="1.0">
|
|
<dict>
|
|
<key>Label</key>
|
|
<string>#{plist_name}</string>
|
|
<key>WorkingDirectory</key>
|
|
<string>#{prefix}</string>
|
|
<key>ProgramArguments</key>
|
|
<array>
|
|
<string>#{opt_bin}/jackd</string>
|
|
<string>-d</string>
|
|
<string>coreaudio</string>
|
|
</array>
|
|
<key>RunAtLoad</key>
|
|
<true/>
|
|
<key>KeepAlive</key>
|
|
<true/>
|
|
</dict>
|
|
</plist>
|
|
EOS
|
|
end
|
|
|
|
def install
|
|
ENV["LINKFLAGS"] = ENV.ldflags
|
|
system "./configure", "--prefix=#{prefix}"
|
|
system "make", "install"
|
|
end
|
|
end
|
|
|
|
__END__
|
|
--- config/os/macosx/pThreadUtilities.h
|
|
+++ config/os/macosx/pThreadUtilities.h
|
|
@@ -66,7 +66,7 @@
|
|
#define __PTHREADUTILITIES_H__
|
|
|
|
#import "pthread.h"
|
|
-#import <CoreServices/../Frameworks/CarbonCore.framework/Headers/MacTypes.h>
|
|
+#import <MacTypes.h>
|
|
|
|
#define THREAD_SET_PRIORITY 0
|
|
#define THREAD_SCHEDULED_PRIORITY 1
|