2010-10-01 17:16:23 +00:00
|
|
|
require 'formula'
|
|
|
|
|
2011-03-10 05:11:03 +00:00
|
|
|
class Dvdbackup < Formula
|
2010-10-01 17:16:23 +00:00
|
|
|
homepage 'http://dvdbackup.sourceforge.net'
|
2012-07-15 22:27:37 +00:00
|
|
|
url 'http://downloads.sourceforge.net/dvdbackup/dvdbackup-0.4.2.tar.gz'
|
|
|
|
sha1 '8265902972c8edcdf66d2030eddc4b752e78c1ca'
|
2010-10-01 17:16:23 +00:00
|
|
|
|
|
|
|
depends_on 'libdvdread'
|
|
|
|
|
|
|
|
def install
|
|
|
|
system "./configure", "--mandir=#{man}",
|
|
|
|
"--prefix=#{prefix}"
|
|
|
|
system "make install"
|
|
|
|
end
|
|
|
|
end
|