aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/libdvdcss.rb
diff options
context:
space:
mode:
authorDavid Höppner2009-10-09 20:12:40 +0200
committerMax Howell2009-10-12 23:01:14 +0100
commitf3338f115517c53f05ee1e2b2ad54b27b42daa35 (patch)
treebc83bc5da928a40ef7dd417af9586bc3a215f377 /Library/Formula/libdvdcss.rb
parent8d94d43d5c550152a916423d89d024bff225a402 (diff)
downloadhomebrew-f3338f115517c53f05ee1e2b2ad54b27b42daa35.tar.bz2
Libdvdcss formula
libdvdcss is a simple library designed for accessing DVDs like a block device without having to bother about the decryption.
Diffstat (limited to 'Library/Formula/libdvdcss.rb')
-rw-r--r--Library/Formula/libdvdcss.rb12
1 files changed, 12 insertions, 0 deletions
diff --git a/Library/Formula/libdvdcss.rb b/Library/Formula/libdvdcss.rb
new file mode 100644
index 000000000..aed957aea
--- /dev/null
+++ b/Library/Formula/libdvdcss.rb
@@ -0,0 +1,12 @@
+require 'brewkit'
+
+class Libdvdcss <Formula
+ url 'http://download.videolan.org/pub/libdvdcss/1.2.9/libdvdcss-1.2.9.tar.bz2'
+ md5 '553383d898826c285afb2ee453b07868'
+ homepage 'http://www.videolan.org/developers/libdvdcss.html'
+
+ def install
+ system "./configure", "--prefix=#{prefix}", "--disable-debug", "--disable-dependency-tracking"
+ system "make install"
+ end
+end