blob: 7320eae6ece910ccbf8f52f144a9858c90571892 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
require 'formula'
class Aamath < Formula
url 'http://fuse.superglue.se/aamath/aamath-0.3.tar.gz'
homepage 'http://fuse.superglue.se/aamath/'
md5 'f0e835bd06069b1bdaddd9e9c3447c12'
def install
ENV.j1
system "make"
bin.install "aamath"
man1.install "aamath.1"
prefix.install "testcases"
end
def test
system "cat #{prefix}/testcases | #{bin}/aamath"
end
end
|