aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorAdam Vandenberg2010-05-20 17:25:19 -0700
committerAdam Vandenberg2010-05-20 17:25:19 -0700
commitd67abc4745293cc6389a31d2cc239973e6ec4929 (patch)
treee08f73f9e375cd7609303d64d6f8945513cb8e9d /Library
parent4d4cab7c2bf79bb96393d13378ed95b5d031e164 (diff)
downloadhomebrew-d67abc4745293cc6389a31d2cc239973e6ec4929.tar.bz2
Add aescrypt 0.7
Diffstat (limited to 'Library')
-rw-r--r--Library/Formula/aescrypt.rb13
1 files changed, 13 insertions, 0 deletions
diff --git a/Library/Formula/aescrypt.rb b/Library/Formula/aescrypt.rb
new file mode 100644
index 000000000..c8e037e48
--- /dev/null
+++ b/Library/Formula/aescrypt.rb
@@ -0,0 +1,13 @@
+require 'formula'
+
+class Aescrypt <Formula
+ url 'http://aescrypt.sourceforge.net/aescrypt-0.7.tar.gz'
+ homepage 'http://aescrypt.sourceforge.net/'
+ md5 'cbec5d7f00a289944397a8079c1d3c6c'
+
+ def install
+ system "./configure"
+ system "make"
+ bin.install ['aescrypt', 'aesget']
+ end
+end