diff options
| author | Steven Sartorius | 2010-05-22 16:29:59 -0400 |
|---|---|---|
| committer | Adam Vandenberg | 2010-05-22 21:31:51 -0700 |
| commit | 79f901189d69f945397ed69fce34880bdda6e4b2 (patch) | |
| tree | 4221ca768415a0ac3b0bb39daf6a6eaba96bc9de /Library/Formula | |
| parent | a425f2919feaefd17a8a6eb93a563deea4851dd2 (diff) | |
| download | homebrew-79f901189d69f945397ed69fce34880bdda6e4b2.tar.bz2 | |
Formula for maxima, a computer algebra system. Depends on cmucl.
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library/Formula')
| -rw-r--r-- | Library/Formula/maxima.rb | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/Library/Formula/maxima.rb b/Library/Formula/maxima.rb new file mode 100644 index 000000000..e9899e221 --- /dev/null +++ b/Library/Formula/maxima.rb @@ -0,0 +1,19 @@ +require 'formula' + +class Maxima <Formula + url 'http://downloads.sourceforge.net/project/maxima/Maxima-source/5.21.1-source/maxima-5.21.1.tar.gz' + homepage 'http://maxima.sourceforge.net/' + md5 'e08ed533f3059cec52788ef35198bdcc' + + depends_on 'gettext' + depends_on 'cmucl' + depends_on 'gnuplot' + depends_on 'rlwrap' + + def install + ENV.deparallelize + system "./configure", "--disable-debug", "--disable-dependency-tracking", "--prefix=#{prefix}", + "--enable-cmucl", "--enable-gettext" + system "make install" + end +end |
