homebrew-core/Formula/libvorbis.rb

32 lines
731 B
Ruby
Raw Normal View History

require 'formula'
2009-06-18 08:53:36 +00:00
2011-03-10 05:11:03 +00:00
class Libvorbis < Formula
url 'http://downloads.xiph.org/releases/vorbis/libvorbis-1.3.2.tar.bz2'
md5 '798a4211221073c1409f26eac4567e8b'
2009-12-13 01:36:07 +00:00
homepage 'http://vorbis.com'
2009-06-18 08:53:36 +00:00
head 'http://svn.xiph.org/trunk/vorbis', :using => :svn
depends_on 'pkg-config' => :build
depends_on 'libogg'
2009-06-18 08:53:36 +00:00
if ARGV.build_head?
depends_on "automake" => :build
if MacOS.xcode_version >= "4.3"
depends_on "libtool" => :build
depends_on "autoconf" => :build
end
end
2009-06-18 08:53:36 +00:00
def install
if ARGV.build_head?
system "./autogen.sh"
end
system "./configure", "--disable-debug", "--disable-dependency-tracking",
"--prefix=#{prefix}"
2009-06-18 08:53:36 +00:00
system "make install"
end
2009-12-13 01:36:07 +00:00
end