diff options
| author | David Höppner | 2009-10-09 20:12:40 +0200 |
|---|---|---|
| committer | Max Howell | 2009-10-12 23:01:14 +0100 |
| commit | f3338f115517c53f05ee1e2b2ad54b27b42daa35 (patch) | |
| tree | bc83bc5da928a40ef7dd417af9586bc3a215f377 | |
| parent | 8d94d43d5c550152a916423d89d024bff225a402 (diff) | |
| download | homebrew-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.
| -rw-r--r-- | Library/Formula/libdvdcss.rb | 12 |
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 |
