blob: 9ed8a1e602e259ad1189a944af9801cadb50a235 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
require 'formula'
class Libdvdread < Formula
homepage 'http://www.dtek.chalmers.se/groups/dvd/'
# Official site is down; use a mirror.
url 'http://www.mplayerhq.hu/MPlayer/releases/dvdnav-old/libdvdread-4.1.3.tar.bz2'
md5 '6dc068d442c85a3cdd5ad3da75f6c6e8'
depends_on 'libdvdcss' => :optional
def patches
# compatibility patch provided by dvdbackup
"http://dvdbackup.sourceforge.net/DVDFileStat.patch"
end
def install
system "./autogen.sh"
system "./configure", "--disable-debug", "--disable-dependency-tracking",
"--prefix=#{prefix}"
system "make install"
end
end
|