blob: 3469c2050fb01613e3e0a57d7279b9dbb5d21625 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
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
|