aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
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