18 lines
528 B
Ruby
18 lines
528 B
Ruby
require 'formula'
|
|
|
|
class Libao < Formula
|
|
url 'http://downloads.xiph.org/releases/ao/libao-1.0.0.tar.gz'
|
|
md5 '08283fbe1f587619053a156254afecec'
|
|
homepage 'http://www.xiph.org/ao/'
|
|
|
|
# Fix build on OS X 10.4 and 10.5 (included in upcoming 1.0.1)
|
|
def patches
|
|
"https://trac.xiph.org/raw-attachment/ticket/1667/libao.patch"
|
|
end
|
|
|
|
def install
|
|
system "./configure", "--disable-debug", "--disable-dependency-tracking",
|
|
"--prefix=#{prefix}", "--disable-x"
|
|
system "make install"
|
|
end
|
|
end
|