diff options
| author | Alex Dunn | 2015-04-17 20:48:26 -0700 | 
|---|---|---|
| committer | Tim D. Smith | 2015-04-17 22:34:34 -0700 | 
| commit | 648ec4fb5aeea408955f4ad7e084f42252cb4106 (patch) | |
| tree | 6d74460cbe9e6969cecfc5df6005f1a2d0dcc6ee /Library/Formula | |
| parent | 1deb4818bf669a348739805eb42f128526500dbb (diff) | |
| download | homebrew-648ec4fb5aeea408955f4ad7e084f42252cb4106.tar.bz2 | |
cvsutils 0.2.6
Closes #38776.
Signed-off-by: Tim D. Smith <git@tim-smith.us>
Diffstat (limited to 'Library/Formula')
| -rw-r--r-- | Library/Formula/cvsutils.rb | 13 | 
1 files changed, 6 insertions, 7 deletions
diff --git a/Library/Formula/cvsutils.rb b/Library/Formula/cvsutils.rb index 036e959b9..d328964e5 100644 --- a/Library/Formula/cvsutils.rb +++ b/Library/Formula/cvsutils.rb @@ -1,14 +1,13 @@ -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' +  homepage "http://www.red-bean.com/cvsutils/" +  url "http://www.red-bean.com/cvsutils/releases/cvsutils-0.2.6.tar.gz" +  sha256 "174bb632c4ed812a57225a73ecab5293fcbab0368c454d113bf3c039722695bb"    def install -    system "./configure", "--disable-debug", "--disable-dependency-tracking", +    system "./configure", "--disable-debug", +                          "--disable-dependency-tracking",                            "--prefix=#{prefix}" -    system "make install" +    system "make", "install"    end    test do  | 
