diff options
| author | Greg Thornton | 2013-05-11 20:57:48 -0500 | 
|---|---|---|
| committer | Adam Vandenberg | 2013-08-18 12:27:02 -0700 | 
| commit | 1fe6fa5025342c03cd2d777c7163f4f99e889254 (patch) | |
| tree | eeab841e7b0b10c06325ddc8dec9efefa644e3b4 | |
| parent | 03e2a926fa1f625bfd11fb3b63835f20d4618103 (diff) | |
| download | homebrew-1fe6fa5025342c03cd2d777c7163f4f99e889254.tar.bz2 | |
libresample 0.1.3
Closes #19741.
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
| -rw-r--r-- | Library/Formula/libresample.rb | 15 | 
1 files changed, 15 insertions, 0 deletions
| diff --git a/Library/Formula/libresample.rb b/Library/Formula/libresample.rb new file mode 100644 index 000000000..3399e6ad4 --- /dev/null +++ b/Library/Formula/libresample.rb @@ -0,0 +1,15 @@ +require 'formula' + +class Libresample < Formula +  homepage 'https://ccrma.stanford.edu/~jos/resample/Available_Software.html' +  url 'http://ftp.de.debian.org/debian/pool/main/libr/libresample/libresample_0.1.3.orig.tar.gz' +  sha1 '85339a6114627e27010856f42a3948a545ca72de' + +  def install +    system "./configure", "--disable-debug", "--disable-dependency-tracking", +                          "--prefix=#{prefix}" +    system "make" +    lib.install 'libresample.a' +    include.install 'include/libresample.h' +  end +end | 
