homebrew-core/Formula/dvdbackup.rb

16 lines
385 B
Ruby
Raw Normal View History

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