2014-09-18 03:55:20 +00:00
|
|
|
require "formula"
|
2013-11-15 20:39:26 +00:00
|
|
|
|
|
|
|
class Rcs < Formula
|
2014-09-18 03:55:20 +00:00
|
|
|
homepage "https://www.gnu.org/software/rcs/"
|
|
|
|
url "http://ftpmirror.gnu.org/rcs/rcs-5.9.3.tar.xz"
|
|
|
|
mirror "https://ftp.gnu.org/gnu/rcs/rcs-5.9.3.tar.xz"
|
|
|
|
sha1 "e4a9549678618f5d69968b10c6c9b92b29519813"
|
2013-11-15 20:39:26 +00:00
|
|
|
|
2014-09-18 04:05:58 +00:00
|
|
|
bottle do
|
|
|
|
cellar :any
|
|
|
|
sha1 "829b0edf8fd3868c7d1101929663ab02d16ca919" => :mavericks
|
|
|
|
sha1 "9cd04b2d0e8a11244568a71dc706f12c57e02ed5" => :mountain_lion
|
|
|
|
sha1 "0982c89efe3269c3f333530a8cdcae6daadaeb8f" => :lion
|
|
|
|
end
|
|
|
|
|
2013-11-15 20:39:26 +00:00
|
|
|
def install
|
|
|
|
system "./configure", "--disable-dependency-tracking",
|
|
|
|
"--disable-silent-rules",
|
|
|
|
"--prefix=#{prefix}"
|
|
|
|
system "make", "install"
|
|
|
|
end
|
|
|
|
|
|
|
|
test do
|
|
|
|
system bin/"merge", "--version"
|
|
|
|
end
|
|
|
|
end
|