aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/cvsps.rb
blob: 3a3d21f3205336038827de8315a025685f3f282b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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