7a4dabfc1a
This restores 1.8 hash rockets because they look nicer with e.g. `depends_on :foo => :bar`
34 lines
1.3 KiB
Ruby
34 lines
1.3 KiB
Ruby
class Portaudio < Formula
|
|
desc "Cross-platform library for audio I/O"
|
|
homepage "http://www.portaudio.com"
|
|
url "http://www.portaudio.com/archives/pa_stable_v19_20140130.tgz"
|
|
sha256 "8fe024a5f0681e112c6979808f684c3516061cc51d3acc0b726af98fc96c8d57"
|
|
head "https://subversion.assembla.com/svn/portaudio/portaudio/trunk/", :using => :svn
|
|
|
|
bottle do
|
|
cellar :any
|
|
rebuild 1
|
|
sha256 "4c6f13019388fc1763de6941ec72fcd01c84f89ccea53575d6d33f0d16aa8cc2" => :sierra
|
|
sha256 "78d99a6512f411e12aede3e62ac9e1cceb4fc8d182073d3e2a6f60e65c387e2f" => :el_capitan
|
|
sha256 "e52067f235b82d537b44b33048eaa43381c5a4d4185da999d583812f6e4f9ff9" => :yosemite
|
|
sha256 "c032773623fd2cb49b736c6978fa7a765468d8a804f3f8618ecda5fcdd198499" => :mavericks
|
|
sha256 "1386972e0632b4ebe2b2770f1ade4c5921c7726fb7fa70f764f5fe09df085c5e" => :mountain_lion
|
|
end
|
|
|
|
option :universal
|
|
|
|
depends_on "pkg-config" => :build
|
|
|
|
def install
|
|
ENV.universal_binary if build.universal?
|
|
system "./configure", "--prefix=#{prefix}",
|
|
"--disable-debug",
|
|
"--disable-dependency-tracking",
|
|
"--enable-mac-universal=#{build.universal? ? "yes" : "no"}",
|
|
"--enable-cxx"
|
|
system "make", "install"
|
|
|
|
# Need 'pa_mac_core.h' to compile PyAudio
|
|
include.install "include/pa_mac_core.h"
|
|
end
|
|
end
|