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
13 lines
284 B
Ruby
13 lines
284 B
Ruby
require 'formula'
|
|
|
|
class Cvsps <Formula
|
|
url 'http://www.cobite.com/cvsps/cvsps-2.2b1.tar.gz'
|
|
homepage 'http://www.cobite.com/cvsps/'
|
|
md5 '997580e8e283034995b9209076858c68'
|
|
|
|
def install
|
|
system "make cvsps"
|
|
bin.install "cvsps"
|
|
man1.install gzip("cvsps.1")
|
|
end
|
|
end
|