speexdsp 1.2rc3 (new formula)

This commit is contained in:
Tomasz Pajor 2017-01-03 20:03:16 +01:00
parent 389a2ae770
commit c6cc5458c6

23
Formula/speexdsp.rb Normal file
View file

@ -0,0 +1,23 @@
class Speexdsp < Formula
desc "Speex audio processing library"
homepage "https://github.com/xiph/speexdsp"
url "https://github.com/xiph/speexdsp/archive/SpeexDSP-1.2rc3.tar.gz"
sha256 "e8be7482df7c95735e5466efb371bd7f21115f39eb45c20ab7264d39c57b6413"
bottle do
end
depends_on "autoconf" => :build
depends_on "automake" => :build
depends_on "libtool" => :build
depends_on "pkg-config" => :build
def install
system "./autogen.sh"
system "./configure", "--disable-debug",
"--disable-dependency-tracking",
"--prefix=#{prefix}"
system "make"
system "make", "install"
end
end