aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/mathomatic.rb
blob: a8e2d12ceab988ddbb1c7552f5d8a8cdd62c9ba5 (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.7.1.tar.bz2'
  homepage 'http://www.mathomatic.org/'
  md5 'f8144e9c17edf688cbb296d20efaf808'

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