homebrew-core/Formula/cvsps.rb
BrewTestBot 95884bae22 Formula files style updates.
Closes Homebrew/homebrew#42407.

Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
2015-08-03 14:21:42 +01:00

17 lines
505 B
Ruby

class Cvsps < Formula
desc "Create patchset information from CVS"
homepage "http://www.catb.org/~esr/cvsps/"
url "http://www.catb.org/~esr/cvsps/cvsps-3.13.tar.gz"
sha256 "5f078a6e02c394f663893751f128caf643fe00a30b559e87db6f45190c623799"
depends_on "asciidoc"
depends_on "docbook"
def install
# otherwise asciidoc will fail to find docbook
ENV["XML_CATALOG_FILES"] = etc/"xml/catalog"
system "make", "all", "cvsps.1"
system "make", "install", "prefix=#{prefix}"
end
end