I <3 vobcopy

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
master
Jonny Gerold 2010-09-28 11:06:35 -07:00 committed by Adam Vandenberg
parent bba9f5adf8
commit c5080f0f68
1 changed files with 19 additions and 0 deletions

19
Formula/vobcopy.rb Normal file
View File

@ -0,0 +1,19 @@
require 'formula'
class Vobcopy <Formula
url 'http://vobcopy.org/download/vobcopy-1.2.0.tar.bz2'
homepage 'http://vobcopy.org'
md5 '88f735ccd051093ff40dab4597bc586e'
depends_on 'libdvdread'
depends_on 'libdvdcss'
def install
system "./configure.sh", "--prefix=#{prefix}",
"--mandir=#{man}",
"--with-lfs",
"--with-dvdread-libs=#{HOMEBREW_PREFIX}"
system "make"
system "make install"
end
end