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:
parent
af78cb275f
commit
b9e6e7532a
1 changed files with 17 additions and 0 deletions
17
Formula/libsoxr.rb
Normal file
17
Formula/libsoxr.rb
Normal 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
|
Loading…
Reference in a new issue