homebrew-core/Formula/libdvdnav.rb

31 lines
943 B
Ruby
Raw Normal View History

class Libdvdnav < Formula
desc "DVD navigation library"
homepage "https://dvdnav.mplayerhq.hu/"
url "https://download.videolan.org/pub/videolan/libdvdnav/5.0.3/libdvdnav-5.0.3.tar.bz2"
sha256 "5097023e3d2b36944c763f1df707ee06b19dc639b2b68fb30113a5f2cbf60b6d"
head do
url "git://git.videolan.org/libdvdnav.git"
depends_on "autoconf" => :build
depends_on "automake" => :build
depends_on "libtool" => :build
end
2014-07-03 19:34:32 +00:00
bottle do
cellar :any
2015-02-18 13:57:22 +00:00
sha1 "c99a864651ceff870b4a5826c80b6ef88ad8671d" => :yosemite
sha1 "30322b1a670e188773fea56f23604e02679530f8" => :mavericks
sha1 "c34ab3283adfcc429dbecebec5251a57ffd88a61" => :mountain_lion
2014-07-03 19:34:32 +00:00
end
2014-05-12 21:27:42 +00:00
depends_on "pkg-config" => :build
depends_on "libdvdread"
def install
system "autoreconf", "-if" if build.head?
system "./configure", "--disable-dependency-tracking",
"--prefix=#{prefix}"
system "make", "install"
end
end