blob: b535c6ae1bb3ff541df5bb542e5de5c42834e23a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
require 'formula'
class Libdvdread <Formula
url 'http://www.dtek.chalmers.se/groups/dvd/dist/libdvdread-0.9.7.tar.gz'
homepage 'http://www.dtek.chalmers.se/groups/dvd/'
md5 '078788c9241ae16763529e1235502337'
depends_on 'libdvdcss' => :optional
def install
system "./configure", "--disable-debug", "--disable-dependency-tracking",
"--prefix=#{prefix}", "--mandir=#{man}",
"--with-libdvdcss"
system "make install"
end
end
|