blob: db6a241030a71be1ce1eed3c0b1090dc1eb9dacd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
require 'formula'
class Mathomatic < Formula
homepage 'http://www.mathomatic.org/'
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
|