2012-08-02 14:49:34 +00:00
|
|
|
class Cvsutils < Formula
|
2015-05-19 00:00:59 +00:00
|
|
|
desc "CVS utilities for use in working directories"
|
2015-04-18 03:48:26 +00:00
|
|
|
homepage "http://www.red-bean.com/cvsutils/"
|
|
|
|
url "http://www.red-bean.com/cvsutils/releases/cvsutils-0.2.6.tar.gz"
|
|
|
|
sha256 "174bb632c4ed812a57225a73ecab5293fcbab0368c454d113bf3c039722695bb"
|
2012-08-02 14:49:34 +00:00
|
|
|
|
2015-04-18 04:02:55 +00:00
|
|
|
bottle do
|
|
|
|
cellar :any
|
|
|
|
sha256 "ccefce4b4a1053e9a32e4f43318c7bf73c7154f0bee1be1cf1777e8fd3e8eabf" => :yosemite
|
|
|
|
sha256 "ab6140058099bdc798e0e294640504035d5c976a8752742044a161c416e2e31e" => :mavericks
|
|
|
|
sha256 "b30e0da765a551698ec56c09750842bf93e1db4c6596d2a741670aa5ce616c3a" => :mountain_lion
|
|
|
|
end
|
|
|
|
|
2012-08-02 14:49:34 +00:00
|
|
|
def install
|
2015-04-18 03:48:26 +00:00
|
|
|
system "./configure", "--disable-debug",
|
|
|
|
"--disable-dependency-tracking",
|
2012-08-02 14:49:34 +00:00
|
|
|
"--prefix=#{prefix}"
|
2015-04-18 03:48:26 +00:00
|
|
|
system "make", "install"
|
2012-08-02 14:49:34 +00:00
|
|
|
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
|