diff options
| author | David Höppner | 2010-03-28 14:56:32 +0200 |
|---|---|---|
| committer | David Höppner | 2010-03-28 14:56:32 +0200 |
| commit | 2036c6b6e63dc102abfdb3654b5e50635bdad997 (patch) | |
| tree | eade11cff545c5db7b2c358444c46e957e23b0d7 /Library/Formula/mathomatic.rb | |
| parent | ce577673ceb5c5912f9131532d5c289176abe24b (diff) | |
| download | homebrew-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.rb | 14 |
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 |
