aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/mathomatic.rb
blob: 6e80a4e7b975e0841bdd17d1fc4ff4f8348280cc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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