7bd947eb0b
* Use new "url" features * Use keg_only DSL * Use "skip_clean :all" DSL * Whitespace and style cleanups * Make bash invocations less silly * Use new man2-man8 helpers * Remove "FileUtils." since it is included in Formula * Use real names for deps instead of aliases * ENV.x11 now updates path, so remove that from individual brews
12 lines
296 B
Ruby
12 lines
296 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
|