aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/csup.rb
diff options
context:
space:
mode:
Diffstat (limited to 'Library/Formula/csup.rb')
-rw-r--r--Library/Formula/csup.rb17
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