homebrew-core/Formula/libdvdcss.rb

16 lines
480 B
Ruby

require 'formula'
class Libdvdcss < Formula
homepage 'http://www.videolan.org/developers/libdvdcss.html'
url 'http://download.videolan.org/pub/libdvdcss/1.2.13/libdvdcss-1.2.13.tar.bz2'
sha1 '1a4a5e55c7529da46386c1c333340eee2c325a77'
head 'svn://svn.videolan.org/libdvdcss/trunk'
def install
system "./bootstrap" if build.head?
system "./configure", "--prefix=#{prefix}", "--disable-debug", "--disable-dependency-tracking"
system "make install"
end
end