homebrew-core/Formula/aamath.rb
Thomas Grenfell Smith 3e3e26e014 aamath 0.3
Renders math in pretty ascii.
2011-03-06 16:50:28 -08:00

20 lines
389 B
Ruby

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 | aamath"
end
end