ad33101916
teapot is a spread sheet program for UNIX, which uses modern concepts besides being portable and extensible, for instance three dimensional tables and iterative expressions. The most important feature is the funktional addressing of cells, unlike the traditional approach like A0, C5, etc. which is probably inherited from VisiCalc. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
12 lines
263 B
Ruby
12 lines
263 B
Ruby
require 'formula'
|
|
|
|
class Teapot <Formula
|
|
url 'http://www.moria.de/~michael/teapot/teapot-1.09.tar.gz'
|
|
homepage 'http://www.moria.de/~michael/teapot/'
|
|
md5 '21e1d1c1d04ba59af1fac6f49a4e2b1b'
|
|
|
|
def install
|
|
system "make"
|
|
bin.install 'teapot'
|
|
end
|
|
end
|