diff options
| author | Manpreet Singh | 2011-09-30 08:26:41 -0700 |
|---|---|---|
| committer | Jack Nagel | 2011-10-16 20:46:51 -0500 |
| commit | 58e146bd99e9eb0deff08391f3ea92829567cb9a (patch) | |
| tree | 0884b95d132ae9fd2a650045e2ce1d306691e7b7 /Library/Formula/csup.rb | |
| parent | b3c4802aa3e1786e898baa51d9f12cfbea860cbb (diff) | |
| download | homebrew-58e146bd99e9eb0deff08391f3ea92829567cb9a.tar.bz2 | |
New formula: csup
csup is a CVSup (http://www.cvsup.org) replacement written in C.
Closes #7914.
Signed-off-by: Jack Nagel <jacknagel@gmail.com>
Diffstat (limited to 'Library/Formula/csup.rb')
| -rw-r--r-- | Library/Formula/csup.rb | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/Library/Formula/csup.rb b/Library/Formula/csup.rb new file mode 100644 index 000000000..45fe7273b --- /dev/null +++ b/Library/Formula/csup.rb @@ -0,0 +1,17 @@ +require 'formula' + +class Csup < Formula + url 'http://mu.org/~mux/csup-snap-20060318.tgz' + homepage 'http://mu.org/~mux/csup.html' + md5 '9218f06f13ed28d1086eec413a734915' + + def install + system "make" + bin.install "csup" + man1.install "csup.1" + end + + def test + system "csup -v" + end +end |
