speexdsp 1.2rc3 (new formula)
This commit is contained in:
parent
389a2ae770
commit
c6cc5458c6
1 changed files with 23 additions and 0 deletions
23
Formula/speexdsp.rb
Normal file
23
Formula/speexdsp.rb
Normal 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
|
Loading…
Reference in a new issue