aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorAlex Zinchenko2012-04-11 22:56:04 +0400
committerAdam Vandenberg2012-08-22 11:28:36 -0700
commit60c05e3223161de849b3b9690337ae3d13c4f8dc (patch)
tree91c31516aa7cb4d4629ebe98666ff89f0e630e19 /Library
parent0024181893fb704bfb29403feb4dc1d93a16fd4a (diff)
downloadhomebrew-60c05e3223161de849b3b9690337ae3d13c4f8dc.tar.bz2
libbluray 0.2.2
Closes #11598. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library')
-rw-r--r--Library/Formula/libbluray.rb21
1 files changed, 21 insertions, 0 deletions
diff --git a/Library/Formula/libbluray.rb b/Library/Formula/libbluray.rb
new file mode 100644
index 000000000..ab5025867
--- /dev/null
+++ b/Library/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