From c6cc5458c6971d588a5843ef8a755cdcd106e071 Mon Sep 17 00:00:00 2001 From: Tomasz Pajor Date: Tue, 3 Jan 2017 20:03:16 +0100 Subject: [PATCH] speexdsp 1.2rc3 (new formula) --- Formula/speexdsp.rb | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 Formula/speexdsp.rb diff --git a/Formula/speexdsp.rb b/Formula/speexdsp.rb new file mode 100644 index 0000000000..06958f0fef --- /dev/null +++ b/Formula/speexdsp.rb @@ -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