homebrew-core/Formula/libogg.rb

29 lines
634 B
Ruby

require 'formula'
class Libogg < Formula
homepage 'http://www.xiph.org/ogg/'
url 'http://downloads.xiph.org/releases/ogg/libogg-1.3.1.tar.gz'
sha1 '270685c2a3d9dc6c98372627af99868aa4b4db53'
head do
url 'http://svn.xiph.org/trunk/ogg'
depends_on :autoconf
depends_on :automake
depends_on :libtool
end
option :universal
def install
ENV.universal_binary if build.universal?
system "./autogen.sh" if build.head?
system "./configure", "--disable-dependency-tracking",
"--prefix=#{prefix}"
system "make"
ENV.deparallelize
system "make install"
end
end