aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/cvsutils.rb
blob: eceefdfbf138d945e1b1b13426290db353e46354 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
require 'formula'

class Cvsutils < Formula
  homepage 'http://www.red-bean.com/cvsutils/'
  url 'http://www.red-bean.com/cvsutils/releases/cvsutils-0.2.5.tar.gz'
  sha1 '294599ce431be50ad1da7295e8b6a65a17fbf531'

  def install
    system "./configure", "--disable-debug", "--disable-dependency-tracking",
                          "--prefix=#{prefix}"
    system "make install"
  end

  def test
    system "#{bin}/cvsu --help"
  end
end