diff options
| author | Tom Vercauteren | 2012-08-02 16:49:34 +0200 | 
|---|---|---|
| committer | Adam Vandenberg | 2012-09-08 20:38:17 -0700 | 
| commit | 591ee629b5f2135a92f53255b51ffa54fd1f7f75 (patch) | |
| tree | 6af3d1d9696738e5cd01227859c25eb176684504 /Library/Formula/cvsutils.rb | |
| parent | 2ea1a0eadea1ef9e624902430716e224ec71dcd5 (diff) | |
| download | homebrew-591ee629b5f2135a92f53255b51ffa54fd1f7f75.tar.bz2 | |
cvsutils 2.5
Closes #13889.
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library/Formula/cvsutils.rb')
| -rw-r--r-- | Library/Formula/cvsutils.rb | 17 | 
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 | 
