blob: 1da2ecde3401df1580bc0bcefff018ec6d7ea86e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
require 'formula'
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
|