aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
authorRémi Prévost2010-08-15 10:05:57 -0400
committerAdam Vandenberg2010-08-17 10:15:08 -0700
commitf6612de7763ec96001609a60794cb7f4bf772459 (patch)
tree9a23ad7f775f1073c30660c19abd8924ad5ae115 /Library/Formula
parent45577946ad8abf6c1b938e116d2c87613a407654 (diff)
downloadhomebrew-f6612de7763ec96001609a60794cb7f4bf772459.tar.bz2
teapot 1.09
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>
Diffstat (limited to 'Library/Formula')
-rw-r--r--Library/Formula/teapot.rb12
1 files changed, 12 insertions, 0 deletions
diff --git a/Library/Formula/teapot.rb b/Library/Formula/teapot.rb
new file mode 100644
index 000000000..760bbf5d0
--- /dev/null
+++ b/Library/Formula/teapot.rb
@@ -0,0 +1,12 @@
+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