homebrew-core/Formula/libdvdread.rb

18 lines
522 B
Ruby
Raw Normal View History

require 'formula'
2011-03-10 05:11:03 +00:00
class Libdvdread < Formula
2011-03-21 20:35:53 +00:00
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'
2011-03-21 20:35:53 +00:00
depends_on 'libdvdcss' => :optional
2011-03-21 20:35:53 +00:00
def install
system "./configure", "--disable-debug", "--disable-dependency-tracking",
"--prefix=#{prefix}",
"--mandir=#{man}",
"--with-libdvdcss"
system "make install"
end
end