homebrew-core/Formula/libbluray.rb
2015-02-17 10:29:42 +00:00

39 lines
1.2 KiB
Ruby

class Libbluray < Formula
homepage "https://www.videolan.org/developers/libbluray.html"
url "ftp://ftp.videolan.org/pub/videolan/libbluray/0.7.0/libbluray-0.7.0.tar.bz2"
sha1 "12baf71accac2ae9efe7fb077999821ea1430d7b"
bottle do
cellar :any
sha1 "39d4a2de13f0c3302372c0fafa8587b78054d610" => :yosemite
sha1 "86036b1e6da82caeb8356b80d759bbce2aa31a08" => :mavericks
sha1 "7c2a0946331bf2cd658c9c99aed2bf40d957b55b" => :mountain_lion
end
head do
url "git://git.videolan.org/libbluray.git"
depends_on "autoconf" => :build
depends_on "automake" => :build
depends_on "libtool" => :build
depends_on "ant" => :build
end
depends_on "pkg-config" => :build
depends_on "freetype" => :recommended
depends_on "fontconfig"
def install
# https://mailman.videolan.org/pipermail/libbluray-devel/2014-April/001401.html
ENV.append_to_cflags "-D_DARWIN_C_SOURCE"
ENV.libxml2
args = %W[--prefix=#{prefix} --disable-dependency-tracking]
args << "--without-freetype" if build.without? "freetype"
system "./bootstrap" if build.head?
system "./configure", *args
system "make"
system "make", "install"
end
end