06cb65df78
Fixes Homebrew/homebrew#10559. Also added missing deps for osm2pgsql. Removed some ACLOCAL_FLAGS stuff as in theory this is not set in ENV.rb. Would like to see if it causes trouble. Should just work now.
27 lines
812 B
Ruby
27 lines
812 B
Ruby
require 'formula'
|
|
|
|
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'
|
|
|
|
depends_on 'libdvdcss' => :optional
|
|
|
|
if MacOS.xcode_version >= "4.3"
|
|
# when and if the tarball provides configure, remove autogen.sh and these deps
|
|
depends_on "automake" => :build
|
|
depends_on "libtool" => :build
|
|
end
|
|
|
|
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}"
|
|
system "make install"
|
|
end
|
|
end
|