aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/cmatrix.rb
diff options
context:
space:
mode:
Diffstat (limited to 'Library/Formula/cmatrix.rb')
-rw-r--r--Library/Formula/cmatrix.rb13
1 files changed, 13 insertions, 0 deletions
diff --git a/Library/Formula/cmatrix.rb b/Library/Formula/cmatrix.rb
new file mode 100644
index 000000000..a55eed540
--- /dev/null
+++ b/Library/Formula/cmatrix.rb
@@ -0,0 +1,13 @@
+require 'formula'
+
+class Cmatrix <Formula
+ url 'http://www.asty.org/cmatrix/dist/cmatrix-1.2a.tar.gz'
+ homepage ''
+ md5 ''
+
+ def install
+ system "./configure", "--prefix=#{prefix}"
+ system "make"
+ system "make install"
+ end
+end