homebrew-core/Formula/mathomatic.rb
Brett Koonce 57ba66b149 mathomatic 16.0.1
Closes Homebrew/homebrew#13863.

Signed-off-by: Jack Nagel <jacknagel@gmail.com>
2012-08-02 00:14:04 -05:00

17 lines
381 B
Ruby

require 'formula'
class Mathomatic < Formula
homepage 'http://www.mathomatic.org/math/'
url 'http://mathomatic.org/mathomatic-16.0.1.tar.bz2'
sha1 '7a3ba4a1e23f5f1898690cdad1ff2a79527e25fc'
def install
ENV['prefix'] = prefix
system "make READLINE=1"
system "make m4install"
cd 'primes' do
system 'make'
system 'make install'
end
end
end