From 71249da368401fe86bb866937d2ec81e81823b4f Mon Sep 17 00:00:00 2001 From: Alex Zinchenko Date: Wed, 11 Apr 2012 22:56:04 +0400 Subject: [PATCH] libbluray 0.2.2 Closes Homebrew/homebrew#11598. Signed-off-by: Adam Vandenberg --- Formula/libbluray.rb | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 Formula/libbluray.rb diff --git a/Formula/libbluray.rb b/Formula/libbluray.rb new file mode 100644 index 0000000000..ab5025867c --- /dev/null +++ b/Formula/libbluray.rb @@ -0,0 +1,21 @@ +require 'formula' + +class Libbluray < Formula + homepage 'http://www.videolan.org/developers/libbluray.html' + url 'ftp://ftp.videolan.org/pub/videolan/libbluray/0.2.2/libbluray-0.2.2.tar.bz2' + sha1 'b0ce210736d012e4a5f155ec4ead3fc58abe143a' + + head 'git://git.videolan.org/libbluray.git' + + depends_on 'pkg-config' => :build + depends_on :automake + depends_on :libtool + + def install + system "./bootstrap" + system "./configure", "--disable-debug", "--disable-dependency-tracking", + "--prefix=#{prefix}" + system "make" + system "make install" + end +end