c1237f528c
ogmtools now builds dvdxchap (to extract dvd chapter information) added libdvdread dependency for dvdxchap Signed-off-by: Adam Vandenberg <flangy@gmail.com>
12 lines
384 B
Ruby
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
|