homebrew-core/Formula/cvsps.rb
Brad Ackerman 2f6f8ea953 cvsps 3.10
Closes Homebrew/homebrew#18007.

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2013-02-22 13:13:29 -08:00

15 lines
336 B
Ruby

require 'formula'
class Cvsps < Formula
homepage 'http://www.catb.org/~esr/cvsps/'
url 'http://www.catb.org/~esr/cvsps/cvsps-3.10.tar.gz'
sha1 '8e0b2c66abd521eef2851da2fa5175f14215e9bf'
depends_on 'asciidoc'
def install
system "make", "all", "cvsps.1"
bin.install "cvsps"
man1.install gzip("cvsps.1")
end
end