Skip to content
This repository has been archived by the owner on Jul 4, 2023. It is now read-only.

Commit

Permalink
libbluray 0.2.2
Browse files Browse the repository at this point in the history
Closes #11598.

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
  • Loading branch information
yumitsu authored and adamv committed Aug 22, 2012
1 parent 0024181 commit 60c05e3
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions Library/Formula/libbluray.rb
Original file line number Diff line number Diff line change
@@ -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

0 comments on commit 60c05e3

Please sign in to comment.