libbluray 0.2.2

Closes Homebrew/homebrew#11598.

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
master
Alex Zinchenko 2012-04-11 22:56:04 +04:00 committed by Adam Vandenberg
parent 43396b090b
commit 71249da368
1 changed files with 21 additions and 0 deletions

21
Formula/libbluray.rb Normal file
View File

@ -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