blob: 880eebc860e19681574aa885084ee8c782e5be8b (
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/math/'
url 'http://mathomatic.org/mathomatic-16.0.4.tar.bz2'
sha1 'cf6d89f3f454c27a946786587a7dc3b47a79ae3f'
def install
ENV['prefix'] = prefix
system "make READLINE=1"
system "make m4install"
cd 'primes' do
system 'make'
system 'make install'
end
end
end
|