aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
authorRajiv Aaron Manglani2009-12-27 13:58:42 -0500
committerAdam Vandenberg2010-01-31 11:28:10 -0800
commit64da48706d29af11f89eb725050485cecf984cf7 (patch)
tree1766eff7801c70452df84c8b65ae1e37860f6494 /Library/Formula
parent5f619db776dfb6078f53b542d12f67ca88db2612 (diff)
downloadhomebrew-64da48706d29af11f89eb725050485cecf984cf7.tar.bz2
keychain 2.7.0.
Keychain helps you to manage ssh and GPG keys in a convenient and secure manner. It acts as a frontend to ssh-agent and ssh-add, but allows you to easily have one long running ssh-agent process per system, rather than the norm of one ssh-agent per login session. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library/Formula')
-rw-r--r--Library/Formula/keychain.rb15
1 files changed, 15 insertions, 0 deletions
diff --git a/Library/Formula/keychain.rb b/Library/Formula/keychain.rb
new file mode 100644
index 000000000..1aa749abc
--- /dev/null
+++ b/Library/Formula/keychain.rb
@@ -0,0 +1,15 @@
+require 'formula'
+
+class Keychain <Formula
+ url 'http://www.funtoo.org/archive/keychain/keychain-2.7.0.tar.bz2'
+ homepage 'http://www.funtoo.org/en/security/keychain/intro/'
+ md5 'c5eecd36130d9e8617a77f96b746982d'
+
+ def install
+ system "make"
+ bin.install "keychain"
+ man1.install "keychain.1.gz"
+ doc.install "ChangeLog"
+ doc.install "README.rst"
+ end
+end