homebrew-core/Formula/libdvdread.rb
Robert Shaw dfb58547b7 libdvdread: Add libdvdcss support
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2010-10-30 17:54:14 -07:00

16 lines
494 B
Ruby

require 'formula'
class Libdvdread <Formula
url 'http://www.dtek.chalmers.se/groups/dvd/dist/libdvdread-0.9.7.tar.gz'
homepage 'http://www.dtek.chalmers.se/groups/dvd/'
md5 '078788c9241ae16763529e1235502337'
depends_on 'libdvdcss' => :optional
def install
system "./configure", "--disable-debug", "--disable-dependency-tracking",
"--prefix=#{prefix}", "--mandir=#{man}",
"--with-libdvdcss"
system "make install"
end
end