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