blob: 66b16086ff64bb385bf3794748380f89a852bfb0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
require 'formula'
class Libdvdcss < Formula
homepage 'http://www.videolan.org/developers/libdvdcss.html'
url 'http://download.videolan.org/pub/libdvdcss/1.2.13/libdvdcss-1.2.13.tar.bz2'
sha1 '1a4a5e55c7529da46386c1c333340eee2c325a77'
head 'svn://svn.videolan.org/libdvdcss/trunk'
bottle do
cellar :any
sha1 "8ffcf33c522746d5c7547cef30f4b250c9b7a33c" => :mavericks
sha1 "6b11c8c628c165ee4b18319e7b5da399b13377c9" => :mountain_lion
sha1 "1b302e402b177f5380247e145658896524c34f6f" => :lion
end
def install
system "./bootstrap" if build.head?
system "./configure", "--prefix=#{prefix}", "--disable-dependency-tracking"
system "make install"
end
end
|