2012-08-02 14:49:34 +00:00
|
|
|
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
|
|
|
|
|
2013-03-25 18:34:46 +00:00
|
|
|
test do
|
|
|
|
system "#{bin}/cvsu", "--help"
|
2012-08-02 14:49:34 +00:00
|
|
|
end
|
|
|
|
end
|