blob: 498e29fd401c8a2f438c4c9a97fe461e1752677b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
require 'formula'
class Libdvdcss < Formula
url 'http://download.videolan.org/pub/libdvdcss/1.2.11/libdvdcss-1.2.11.tar.bz2'
md5 'd25d906c3f9007ccd91b1efb909f93e7'
head 'svn://svn.videolan.org/libdvdcss/trunk'
homepage 'http://www.videolan.org/developers/libdvdcss.html'
def install
system "./bootstrap" if ARGV.build_head?
system "./configure", "--prefix=#{prefix}", "--disable-debug", "--disable-dependency-tracking"
system "make install"
end
end
|