aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDavid Christenson2015-02-16 22:56:48 -0700
committerMike McQuaid2015-02-17 10:29:41 +0000
commita4cdd99ce0ceb103208992420e2ec5c16e1a398a (patch)
tree64349cccd67b9198e81da2a17ecfe4c6beb90ac9
parent243e385248c517da4c4eddc2410a92325f81d45b (diff)
downloadhomebrew-a4cdd99ce0ceb103208992420e2ec5c16e1a398a.tar.bz2
libbluray 0.7.0
Update to latest stable release, require fontconfig for head and stable, modernize formula. Closes #36886. Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
-rw-r--r--Library/Formula/libbluray.rb10
1 files changed, 4 insertions, 6 deletions
diff --git a/Library/Formula/libbluray.rb b/Library/Formula/libbluray.rb
index 9dcbea116..1e9c022b4 100644
--- a/Library/Formula/libbluray.rb
+++ b/Library/Formula/libbluray.rb
@@ -1,9 +1,7 @@
-require "formula"
-
class Libbluray < Formula
homepage "https://www.videolan.org/developers/libbluray.html"
- url "ftp://ftp.videolan.org/pub/videolan/libbluray/0.6.2/libbluray-0.6.2.tar.bz2"
- sha1 "a1ab8c8c9310680fb1fe6a58f9fc5430613600fe"
+ url "ftp://ftp.videolan.org/pub/videolan/libbluray/0.7.0/libbluray-0.7.0.tar.bz2"
+ sha1 "12baf71accac2ae9efe7fb077999821ea1430d7b"
bottle do
cellar :any
@@ -20,11 +18,11 @@ class Libbluray < Formula
depends_on "automake" => :build
depends_on "libtool" => :build
depends_on "ant" => :build
- depends_on "fontconfig"
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
@@ -37,6 +35,6 @@ class Libbluray < Formula
system "./bootstrap" if build.head?
system "./configure", *args
system "make"
- system "make install"
+ system "make", "install"
end
end