blob: 578b62ba031656c4c2059061135135914fbd92b5 (
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 Lsdvd < Formula
url 'http://downloads.sourceforge.net/project/lsdvd/lsdvd/0.16%20-%20I%20hate%20James%20Blunt/lsdvd-0.16.tar.gz'
homepage 'http://untrepid.com/acidrip/lsdvd.html'
md5 '340e1abe5c5e5abf7ff8031e78f49ee7'
depends_on 'libdvdread'
depends_on 'libdvdcss' => :optional
def install
system "./configure", "--disable-debug", "--disable-dependency-tracking",
"--prefix=#{prefix}", "--mandir=#{man}"
system "make install"
end
def patches
{:p0 => [
"http://svn.macports.org/repository/macports/trunk/dports/sysutils/lsdvd/files/patch-configure.diff",
"http://svn.macports.org/repository/macports/trunk/dports/sysutils/lsdvd/files/patch-lsdvd_c.diff"
]}
end
end
|