aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/mathomatic.rb
blob: 32b2ff30197e53af4e38149c12d64f6f239846b8 (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"
    system "make install"
  end
end