aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorJonathan Wright2010-01-03 11:38:09 +1300
committerDavid Höppner2010-03-29 21:20:30 +0200
commitc5ce05e41636efdcd6060dbe7e3a94fc1e565032 (patch)
tree432e6aae98f514bf9dc2b58875de33b7f2225160 /Library
parentb75d86108dac7d1c125f98d2b6e8561e61828e8e (diff)
downloadhomebrew-c5ce05e41636efdcd6060dbe7e3a94fc1e565032.tar.bz2
ccrypt 1.9
ccrypt is a utility for encrypting and decrypting files and streams. Signed-off-by: David Höppner <0xffea@gmail.com> * correct man path * run check
Diffstat (limited to 'Library')
-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