aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--Library/Formula/ccrypt.rb13
1 files changed, 13 insertions, 0 deletions
diff --git a/Library/Formula/ccrypt.rb b/Library/Formula/ccrypt.rb
new file mode 100644
index 000000000..40e717203
--- /dev/null
+++ b/Library/Formula/ccrypt.rb
@@ -0,0 +1,13 @@
+require 'formula'
+
+class Ccrypt <Formula
+ url 'http://ccrypt.sourceforge.net/download/ccrypt-1.9.tar.gz'
+ homepage 'http://ccrypt.sourceforge.net/'
+ md5 'c3f78019d7a166dd66f1d4b1390c62c2'
+
+ def install
+ system "./configure", "--prefix=#{prefix}", "--disable-debug", "--disable-dependency-tracking", "--mandir=#{man}"
+ system "make install"
+ system "make check"
+ end
+end