61b2307139
brewkit.rb changes ENV destructively, so lets not do that everytime a formula is required. Now it's possible for other tools to require a formula description without worrying about side-effects.
12 lines
379 B
Ruby
12 lines
379 B
Ruby
require 'formula'
|
|
|
|
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
|