homebrew-core/Formula/libdvdread.rb
Keenan Brock c1237f528c ogmtools now creates man pages in correct directory
ogmtools now builds dvdxchap (to extract dvd chapter information)
added libdvdread dependency for dvdxchap

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2010-02-23 22:39:48 -08:00

12 lines
384 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'
def install
system "./configure", "--prefix=#{prefix}", "--disable-debug", "--disable-dependency-tracking", "--mandir=#{man}"
system "make install"
end
end