homebrew-core/Formula/libogg.rb

28 lines
656 B
Ruby
Raw Normal View History

require 'formula'
2011-03-10 05:11:03 +00:00
class Libogg < Formula
2009-12-13 01:36:07 +00:00
homepage 'http://www.xiph.org/ogg/'
url 'http://downloads.xiph.org/releases/ogg/libogg-1.3.0.tar.gz'
md5 '0a7eb40b86ac050db3a789ab65fe21c2'
2012-05-10 14:10:12 +00:00
head 'http://svn.xiph.org/trunk/ogg'
if ARGV.build_head?
depends_on "automake" => :build
if MacOS.xcode_version >= "4.3"
depends_on "libtool" => :build
depends_on "autoconf" => :build
end
end
def install
2012-05-10 14:10:12 +00:00
system "./autogen.sh" if ARGV.build_head?
system "./configure", "--disable-dependency-tracking",
"--prefix=#{prefix}"
system "make"
ENV.deparallelize
system "make install"
end
2009-12-13 01:36:07 +00:00
end