homebrew-core/Formula/libao.rb

17 lines
423 B
Ruby
Raw Normal View History

require 'formula'
2009-06-18 10:00:03 +00:00
2011-03-10 05:11:03 +00:00
class Libao < Formula
url 'http://downloads.xiph.org/releases/ao/libao-1.1.0.tar.gz'
md5 '2b2508c29bc97e4dc218fa162cf883c8'
homepage 'http://www.xiph.org/ao/'
2009-06-18 10:00:03 +00:00
depends_on 'pkg-config' => :build
2009-06-18 10:00:03 +00:00
def install
system "./configure", "--disable-dependency-tracking",
"--prefix=#{prefix}",
"--enable-static"
2009-06-18 10:00:03 +00:00
system "make install"
end
end