homebrew-core/Formula/rcs.rb
2015-01-28 23:16:28 -08:00

24 lines
728 B
Ruby

class Rcs < Formula
homepage "https://www.gnu.org/software/rcs/"
url "http://ftpmirror.gnu.org/rcs/rcs-5.9.4.tar.xz"
mirror "https://ftp.gnu.org/gnu/rcs/rcs-5.9.4.tar.xz"
sha1 "e87fb2e587fa165204ef69f69b7d5cd354c4e44d"
bottle do
cellar :any
sha1 "c1b9165adefc09d0ec1ed38ba7d25a47d61617b6" => :yosemite
sha1 "f3b9ff862830ecc7d84451b82a22d8b6db7ff9eb" => :mavericks
sha1 "f47df6b50e9d48d06a72b03e9425cf4bf4fbc429" => :mountain_lion
end
def install
system "./configure", "--disable-dependency-tracking",
"--disable-silent-rules",
"--prefix=#{prefix}"
system "make", "install"
end
test do
system bin/"merge", "--version"
end
end