homebrew-core/Formula/mathomatic.rb
Steven Sartorius 5e8a4a2ee7 Modify mathomatic.rb to use OS X included readline
Signed-off-by: David Höppner <0xffea@gmail.com>
2010-05-17 16:46:09 +02:00

14 lines
325 B
Ruby

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 READLINE=1"
system "make install"
end
end