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