diff options
| author | Peter Eisentraut | 2013-11-15 15:39:26 -0500 |
|---|---|---|
| committer | Adam Vandenberg | 2013-11-16 11:27:14 -0800 |
| commit | 9b6d33d0dc75ba118091e3905d83c7f067ec629c (patch) | |
| tree | e3380e5d00d58c9ae29909238e94523934e59e3a /Library/Formula | |
| parent | 5a8bb2c576edba36539231be7557ebff95dc907b (diff) | |
| download | homebrew-9b6d33d0dc75ba118091e3905d83c7f067ec629c.tar.bz2 | |
rcs 5.9.1
Closes #24360.
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library/Formula')
| -rw-r--r-- | Library/Formula/rcs.rb | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/Library/Formula/rcs.rb b/Library/Formula/rcs.rb new file mode 100644 index 000000000..58cc6acb3 --- /dev/null +++ b/Library/Formula/rcs.rb @@ -0,0 +1,18 @@ +require 'formula' + +class Rcs < Formula + homepage 'https://www.gnu.org/software/rcs/' + url 'http://ftpmirror.gnu.org/rcs/rcs-5.9.1.tar.xz' + sha1 '2e1017c24cd79ed434fa80e384ba844738c2cbfe' + + def install + system "./configure", "--disable-dependency-tracking", + "--disable-silent-rules", + "--prefix=#{prefix}" + system "make", "install" + end + + test do + system bin/"merge", "--version" + end +end |
