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

class Mathomatic <Formula
  url 'http://mathomatic.org/mathomatic-15.3.5.tar.bz2'
  homepage 'http://www.mathomatic.org/'
  md5 'f348acc2982eb6becbbc52b9883acb99'

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