blob: 14ab30ae8d5ce47194ccd2990f907c2d83896992 (
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.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
|