cvsutils 2.5
Closes Homebrew/homebrew#13889. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
This commit is contained in:
parent
fdbfb5a7f4
commit
0582ceecfe
1 changed files with 17 additions and 0 deletions
17
Formula/cvsutils.rb
Normal file
17
Formula/cvsutils.rb
Normal file
|
@ -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
|
Loading…
Reference in a new issue