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
400 B
Ruby
12 lines
400 B
Ruby
require 'formula'
|
|
|
|
class Libdvbpsi <Formula
|
|
url 'http://download.videolan.org/pub/libdvbpsi/0.1.6/libdvbpsi5-0.1.6.tar.bz2'
|
|
md5 'bd2d9861be3311e1e03c91cd9345f542'
|
|
homepage 'http://www.videolan.org/developers/libdvbpsi.html'
|
|
|
|
def install
|
|
system "./configure", "--prefix=#{prefix}", "--disable-debug", "--disable-dependency-tracking", "--enable-release"
|
|
system "make install"
|
|
end
|
|
end
|