75a02ba5e2
Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
34 lines
889 B
Ruby
34 lines
889 B
Ruby
require 'formula'
|
|
class GnupgInstalled < Requirement
|
|
fatal true
|
|
|
|
satisfy { which('gpg') || which('gpg2') }
|
|
|
|
def message; <<-EOS.undent
|
|
Gnupg is required to use these tools.
|
|
|
|
You can install Gnupg or Gnupg2 with Homebrew:
|
|
brew install gnupg
|
|
brew install gnupg2
|
|
|
|
Or you can use one of several different
|
|
prepackaged installers that are available.
|
|
EOS
|
|
end
|
|
end
|
|
|
|
class Pius < Formula
|
|
homepage 'http://www.phildev.net/pius/'
|
|
url 'http://downloads.sourceforge.net/project/pgpius/pius/2.0.11/pius-2.0.11.tar.bz2'
|
|
sha1 '0c9b74f271bf195d8636d8406fbb56cc024195ad'
|
|
|
|
depends_on GnupgInstalled
|
|
|
|
def install
|
|
# Replace hardcoded gpg path: https://sourceforge.net/p/pgpius/bugs/12/
|
|
inreplace 'pius', '/usr/bin/gpg', HOMEBREW_PREFIX/'bin/gpg'
|
|
bin.install 'pius'
|
|
bin.install 'pius-keyring-mgr'
|
|
bin.install 'pius-party-worksheet'
|
|
end
|
|
end
|