homebrew-core/Formula/lsdvd.rb
Robert Shaw 1602556897 lsdvd: new formula
Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
2010-12-03 12:01:09 +00:00

22 lines
765 B
Ruby

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