libsoxr 0.1.1 (new formula)

Part 1 of closing Homebrew/homebrew#34135.

Closes Homebrew/homebrew#34198.

Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
This commit is contained in:
Dominyk Tiller 2014-11-14 20:40:20 +00:00 committed by Mike McQuaid
parent af78cb275f
commit b9e6e7532a

17
Formula/libsoxr.rb Normal file
View file

@ -0,0 +1,17 @@
require "formula"
class Libsoxr < Formula
homepage "http://sourceforge.net/projects/soxr/"
url "https://downloads.sourceforge.net/project/soxr/soxr-0.1.1-Source.tar.xz"
mirror "https://mirrors.kernel.org/debian/pool/main/libs/libsoxr/libsoxr_0.1.1.orig.tar.xz"
sha1 "f5d90e375db3914a522fef477898bde8c70243e7"
depends_on "cmake" => :build
conflicts_with "sox", :because => "Sox contains soxr. Soxr is purely the resampler."
def install
system "cmake", ".", *std_cmake_args
system "make", "install"
end
end