homebrew-core/Formula/libdvdcss.rb

16 lines
480 B
Ruby
Raw Normal View History

require 'formula'
2011-03-10 05:11:03 +00:00
class Libdvdcss < Formula
2012-08-23 05:55:28 +00:00
homepage 'http://www.videolan.org/developers/libdvdcss.html'
url 'http://download.videolan.org/pub/libdvdcss/1.2.12/libdvdcss-1.2.12.tar.bz2'
sha1 'f0977374f12fadbbeb45e1ff493adc259247bb09'
2012-09-03 21:00:52 +00:00
head 'svn://svn.videolan.org/libdvdcss/trunk'
def install
2012-09-03 21:00:52 +00:00
system "./bootstrap" if build.head?
system "./configure", "--prefix=#{prefix}", "--disable-debug", "--disable-dependency-tracking"
system "make install"
end
end