2013-01-19 07:16:31 +00:00
|
|
|
class Aubio < Formula
|
2015-05-19 00:00:59 +00:00
|
|
|
desc "Extract annotations from audio signals"
|
2015-08-03 12:55:31 +00:00
|
|
|
homepage "http://aubio.org/"
|
|
|
|
url "http://aubio.org/pub/aubio-0.4.1.tar.bz2"
|
|
|
|
sha256 "25d7df0a9cd6366fda764a803424caddf5fb819fc75b42a7a03e1e6f8eb3c695"
|
2014-06-09 19:45:15 +00:00
|
|
|
|
2015-08-03 12:55:31 +00:00
|
|
|
head "https://github.com/piem/aubio.git", :branch => "develop"
|
2014-11-06 00:09:17 +00:00
|
|
|
|
2014-06-23 11:00:18 +00:00
|
|
|
bottle do
|
|
|
|
cellar :any
|
|
|
|
sha1 "959a1e4eb7bf72573f565af2ebe2c51eb7a6eef4" => :mavericks
|
|
|
|
sha1 "d530d90d8e39ed5888bd492a3e3a888e21de2dc3" => :mountain_lion
|
|
|
|
sha1 "5dc7cb95da354f22e32f8b754093e82d729cbe9f" => :lion
|
|
|
|
end
|
|
|
|
|
2014-06-09 19:45:15 +00:00
|
|
|
option :universal
|
2013-01-19 07:16:31 +00:00
|
|
|
|
2013-06-14 19:09:06 +00:00
|
|
|
depends_on :macos => :lion
|
2013-06-28 03:38:12 +00:00
|
|
|
|
2014-06-09 19:45:15 +00:00
|
|
|
depends_on :python => :optional
|
2015-08-03 12:55:31 +00:00
|
|
|
depends_on "pkg-config" => :build
|
2014-12-04 17:01:18 +00:00
|
|
|
depends_on "libtool" => :build
|
2013-01-19 07:16:31 +00:00
|
|
|
|
2015-08-03 12:55:31 +00:00
|
|
|
depends_on "libav" => :optional
|
|
|
|
depends_on "libsndfile" => :optional
|
|
|
|
depends_on "libsamplerate" => :optional
|
|
|
|
depends_on "fftw" => :optional
|
|
|
|
depends_on "jack" => :optional
|
2014-11-06 00:09:17 +00:00
|
|
|
|
2015-08-03 12:55:31 +00:00
|
|
|
if build.with? "python"
|
|
|
|
depends_on "numpy" => :python
|
2014-06-09 19:45:15 +00:00
|
|
|
end
|
2013-01-19 07:16:31 +00:00
|
|
|
|
|
|
|
def install
|
2014-06-09 19:45:15 +00:00
|
|
|
ENV.universal_binary if build.universal?
|
|
|
|
|
|
|
|
# Needed due to issue with recent cland (-fno-fused-madd))
|
|
|
|
ENV.refurbish_args
|
|
|
|
|
|
|
|
system "./waf", "configure", "--prefix=#{prefix}"
|
|
|
|
system "./waf", "build"
|
|
|
|
system "./waf", "install"
|
|
|
|
|
2015-08-03 12:55:31 +00:00
|
|
|
if build.with? "python"
|
|
|
|
cd "python" do
|
2014-06-09 19:45:15 +00:00
|
|
|
system "python", "./setup.py", "build"
|
|
|
|
system "python", "./setup.py", "install", "--prefix", prefix
|
2015-08-03 12:55:31 +00:00
|
|
|
bin.env_script_all_files(libexec+"bin", :PYTHONPATH => ENV["PYTHONPATH"])
|
2014-06-09 19:45:15 +00:00
|
|
|
end
|
|
|
|
end
|
2013-01-19 07:16:31 +00:00
|
|
|
end
|
|
|
|
|
2014-02-23 21:31:41 +00:00
|
|
|
test do
|
2015-08-03 12:55:31 +00:00
|
|
|
if build.with? "python"
|
2014-06-09 19:45:15 +00:00
|
|
|
system "#{bin}/aubiocut", "--verbose", "/System/Library/Sounds/Glass.aiff"
|
|
|
|
end
|
|
|
|
system "#{bin}/aubioonset", "--verbose", "/System/Library/Sounds/Glass.aiff"
|
2013-01-19 07:16:31 +00:00
|
|
|
end
|
|
|
|
end
|