4c8a048dd0
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
20 lines
503 B
Ruby
20 lines
503 B
Ruby
require 'formula'
|
|
|
|
class Libsndfile < Formula
|
|
homepage 'http://www.mega-nerd.com/libsndfile/'
|
|
url 'http://www.mega-nerd.com/libsndfile/files/libsndfile-1.0.25.tar.gz'
|
|
md5 'e2b7bb637e01022c7d20f95f9c3990a2'
|
|
|
|
depends_on 'pkg-config' => :build
|
|
|
|
def options
|
|
[["--universal", "Build a universal binary."]]
|
|
end
|
|
|
|
def install
|
|
ENV.universal_binary if ARGV.build_universal?
|
|
|
|
system "./configure", "--disable-dependency-tracking", "--prefix=#{prefix}"
|
|
system "make install"
|
|
end
|
|
end
|