aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/mathomatic.rb
diff options
context:
space:
mode:
authorDavid Höppner2010-03-28 14:56:32 +0200
committerDavid Höppner2010-03-28 14:56:32 +0200
commit2036c6b6e63dc102abfdb3654b5e50635bdad997 (patch)
treeeade11cff545c5db7b2c358444c46e957e23b0d7 /Library/Formula/mathomatic.rb
parentce577673ceb5c5912f9131532d5c289176abe24b (diff)
downloadhomebrew-2036c6b6e63dc102abfdb3654b5e50635bdad997.tar.bz2
New formula mathomatic
Mathomatic is a portable Computer Algebra System (CAS) written entirely in the C programming language.
Diffstat (limited to 'Library/Formula/mathomatic.rb')
-rw-r--r--Library/Formula/mathomatic.rb14
1 files changed, 14 insertions, 0 deletions
diff --git a/Library/Formula/mathomatic.rb b/Library/Formula/mathomatic.rb
new file mode 100644
index 000000000..f9713fe6e
--- /dev/null
+++ b/Library/Formula/mathomatic.rb
@@ -0,0 +1,14 @@
+require 'formula'
+
+class Mathomatic <Formula
+ url 'http://launchpad.net/mathomatic/15/15.0.6/+download/mathomatic-15.0.6.tar.bz2'
+ homepage 'http://www.mathomatic.org/'
+ md5 '4674deb2afde1b34f7ff8cb481596328'
+
+
+ def install
+ ENV['prefix'] = "#{prefix}"
+ system "make"
+ system "make install"
+ end
+end