homebrew-core/Formula/mathomatic.rb
Brett Koonce f330fc2bb4 mathomatic 16.0.5
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2012-12-01 09:52:19 -08:00

17 lines
381 B
Ruby

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