aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
Diffstat (limited to 'Library')
-rw-r--r--Library/Formula/cvsutils.rb17
1 files changed, 17 insertions, 0 deletions
diff --git a/Library/Formula/cvsutils.rb b/Library/Formula/cvsutils.rb
new file mode 100644
index 000000000..eceefdfbf
--- /dev/null
+++ b/Library/Formula/cvsutils.rb
@@ -0,0 +1,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