diff options
| author | Samuel John | 2013-03-31 20:51:43 +0200 |
|---|---|---|
| committer | Samuel John | 2013-03-31 20:54:25 +0200 |
| commit | 9495b06ef3f35be8711902ce268ccfc92cdcb056 (patch) | |
| tree | 8a155f95a7237eb8a424987ac7189a3accb50d2a /Library/Formula/maxima.rb | |
| parent | 65fe8946bf4915c6b0d6c6e64dfc205f10c43f3c (diff) | |
| download | homebrew-9495b06ef3f35be8711902ce268ccfc92cdcb056.tar.bz2 | |
Moved to homebrew/science Octave, OpenCV, VTK, ...
Diffstat (limited to 'Library/Formula/maxima.rb')
| -rw-r--r-- | Library/Formula/maxima.rb | 53 |
1 files changed, 0 insertions, 53 deletions
diff --git a/Library/Formula/maxima.rb b/Library/Formula/maxima.rb deleted file mode 100644 index d93adb6b8..000000000 --- a/Library/Formula/maxima.rb +++ /dev/null @@ -1,53 +0,0 @@ -require 'formula' - -class Maxima < Formula - homepage 'http://maxima.sourceforge.net/' - url 'http://sourceforge.net/projects/maxima/files/Maxima-source/5.28.0-source/maxima-5.28.0.tar.gz' - sha1 '52d7dad4681711a6ead73b72835b177107363b9c' - - depends_on 'gettext' - depends_on 'sbcl' - depends_on 'gnuplot' - depends_on 'rlwrap' - - # required for maxima help(), describe(), "?" and "??" lisp functionality - skip_clean 'share/info' - - def patches - # fixes 3468021: imaxima.el uses incorrect tmp directory on OS X: - # https://sourceforge.net/tracker/?func=detail&aid=3468021&group_id=4933&atid=104933 - DATA - end - - def install - ENV.deparallelize - system "./configure", "--disable-debug", "--disable-dependency-tracking", - "--prefix=#{prefix}", - "--enable-sbcl", - "--enable-gettext" - # Per build instructions - ENV['LANG'] = 'C' - system 'make' - system 'make check' - system 'make install' - end - - def test - system "#{bin}/maxima", "--batch-string='run_testsuite(); quit();'" - end -end - -__END__ -diff --git a/interfaces/emacs/imaxima/imaxima.el b/interfaces/emacs/imaxima/imaxima.el -index e3feaa6..3a52a0b 100644 ---- a/interfaces/emacs/imaxima/imaxima.el -+++ b/interfaces/emacs/imaxima/imaxima.el -@@ -296,6 +296,8 @@ nil means no scaling at all, t allows any scaling." - (temp-directory)) - ((eql system-type 'cygwin) - "/tmp/") -+ ((eql system-type 'darwin) -+ "/tmp/") - (t temporary-file-directory)) - "*Directory used for temporary TeX and image files." - :type '(directory) |
