aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/mathomatic.rb
blob: cedafc54b9f7c624556370f1dbb287471579948f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
require 'formula'

class Mathomatic <Formula
  url 'http://launchpad.net/mathomatic/15/15.0.8/+download/mathomatic-15.0.8.tar.bz2'
  homepage 'http://www.mathomatic.org/'
  md5 '24f8c4f80318215f2190daefc1f0e106'

  def install
    ENV['prefix'] = prefix
    system "make READLINE=1"
    system "make install"
  end
end