aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorSteven Sartorius2010-09-18 19:14:45 -0400
committerAdam Vandenberg2010-10-21 20:43:04 -0700
commit841b6aacac235e61e929bdb10bee0592998a85a8 (patch)
tree898559b0fcfa0e3eba7484caa9cffd828f1a99a1 /Library
parente500df2736877837183c324b312111d716e8f891 (diff)
downloadhomebrew-841b6aacac235e61e929bdb10bee0592998a85a8.tar.bz2
added nickle
Nickle is a desk calculator language with powerful programming and scripting capabilities Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library')
-rw-r--r--Library/Formula/nickle.rb13
1 files changed, 13 insertions, 0 deletions
diff --git a/Library/Formula/nickle.rb b/Library/Formula/nickle.rb
new file mode 100644
index 000000000..e4f09a9f7
--- /dev/null
+++ b/Library/Formula/nickle.rb
@@ -0,0 +1,13 @@
+require 'formula'
+
+class Nickle <Formula
+ url 'http://nickle.org/release/nickle-2.70.tar.gz'
+ homepage 'http://www.nickle.org/'
+ md5 'fbb77ad1c6f80a9a67ae28a2a678ed67'
+
+ def install
+ system "./configure", "--disable-dependency-tracking",
+ "--prefix=#{prefix}"
+ system "make install"
+ end
+end