homebrew-core/Formula/libdvdread.rb

22 lines
617 B
Ruby
Raw Normal View History

require 'formula'
2011-03-10 05:11:03 +00:00
class Libdvdread < Formula
homepage 'http://dvdnav.mplayerhq.hu/'
url 'http://dvdnav.mplayerhq.hu/releases/libdvdread-4.2.0.tar.bz2'
head 'svn://svn.mplayerhq.hu/dvdnav/trunk/libdvdread'
md5 'ab7a19d3ab1a437ae754ef477d6231a4'
2011-03-21 20:35:53 +00:00
depends_on 'libdvdcss' => :optional
2011-03-21 20:35:53 +00:00
def install
if Formula.factory("libdvdcss").installed?
ENV.append "CFLAGS", "-DHAVE_DVDCSS_DVDCSS_H"
ENV.append "LDFLAGS", "-ldvdcss"
end
system "./autogen.sh", "--disable-debug", "--disable-dependency-tracking",
"--prefix=#{prefix}"
2011-03-21 20:35:53 +00:00
system "make install"
end
end