diff options
| author | nibbles 2bits | 2012-11-01 00:12:11 -0700 |
|---|---|---|
| committer | Adam Vandenberg | 2012-11-01 07:47:50 -0700 |
| commit | 2f06c81aa97f750e216d510354e18bfe3f7f676c (patch) | |
| tree | 7b23efb9bd384450a731d65484417c2cd998feae /Library | |
| parent | 628a87568bb8f1a584d426306f38aaaee751061b (diff) | |
| download | homebrew-2f06c81aa97f750e216d510354e18bfe3f7f676c.tar.bz2 | |
wxmaxima: add a few caveats
Wxmaxima needs the standard caveat telling the user where the
app gets installed, plus one about linking the app, plus one
describing how to first setup wxmaxima to find maxima.
Fixes #15721
Closes #15790.
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library')
| -rw-r--r-- | Library/Formula/wxmaxima.rb | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/Library/Formula/wxmaxima.rb b/Library/Formula/wxmaxima.rb index d41d00ac8..45c92d0c4 100644 --- a/Library/Formula/wxmaxima.rb +++ b/Library/Formula/wxmaxima.rb @@ -18,4 +18,18 @@ class Wxmaxima < Formula prefix.install 'wxMaxima.app' system "make install" end + + def caveats + <<-EOS.undent + The program you want to run is wxmaxima.app, and it gets installed into: + #{prefix} + + To symlink it into Applications, you can type: + ln -s #{prefix}/wxmaxima.app /Applications + + When you start wxmaxima the first time, you have to open Preferences, + and tell it where maxima is located. + + EOS + end end |
