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
299 B
Ruby
12 lines
299 B
Ruby
require 'formula'
|
|
|
|
class Cksfv <Formula
|
|
@url='http://zakalwe.fi/~shd/foss/cksfv/files/cksfv-1.3.14.tar.bz2'
|
|
@homepage='http://zakalwe.fi/~shd/foss/cksfv/'
|
|
@md5='138bff42ab23fbba8cca0ae14b2d9e52'
|
|
|
|
def install
|
|
system "./configure", "--prefix=#{prefix}"
|
|
system "make install"
|
|
end
|
|
end
|