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