aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--Library/Formula/maxima.rb10
1 files changed, 8 insertions, 2 deletions
diff --git a/Library/Formula/maxima.rb b/Library/Formula/maxima.rb
index 92b8492c3..2f2144c79 100644
--- a/Library/Formula/maxima.rb
+++ b/Library/Formula/maxima.rb
@@ -1,9 +1,9 @@
require 'formula'
class Maxima < Formula
- url 'http://sourceforge.net/projects/maxima/files/Maxima-source/5.22.1-source/maxima-5.22.1.tar.gz'
+ url 'http://sourceforge.net/projects/maxima/files/Maxima-source/5.25.1-source/maxima-5.25.1.tar.gz'
homepage 'http://maxima.sourceforge.net/'
- md5 '160ea8be39127d6636b934a85e407c9b'
+ md5 'f2a7399e53eadc38e0bedb843d5d7055'
depends_on 'gettext'
depends_on 'sbcl'
@@ -16,6 +16,12 @@ class Maxima < Formula
"--prefix=#{prefix}",
"--mandir=#{man}", "--infodir=#{info}",
"--enable-sbcl", "--enable-gettext"
+ system "make"
+ system "make check"
system "make install"
end
+
+ def test
+ system "maxima --batch-string='run_testsuite(); quit();'"
+ end
end