f6109ad2ca
Mail URL is currently down. Closes Homebrew/homebrew#32999. Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
13 lines
384 B
Ruby
13 lines
384 B
Ruby
require 'formula'
|
|
|
|
class Keychain < Formula
|
|
homepage 'http://www.funtoo.org/wiki/Keychain'
|
|
url 'http://ftp.heanet.ie/mirrors/funtoo/distfiles/keychain/keychain-2.7.1.tar.bz2'
|
|
mirror 'http://www.funtoo.org/archive/keychain/keychain-2.7.1.tar.bz2'
|
|
sha1 'e7ad7da374ba81e57792bb2695eb6c352f769de7'
|
|
|
|
def install
|
|
bin.install "keychain"
|
|
man1.install "keychain.1"
|
|
end
|
|
end
|