46 lines
1.4 KiB
Ruby
46 lines
1.4 KiB
Ruby
class Reop < Formula
|
|
desc "Encrypted keypair management"
|
|
homepage "http://www.tedunangst.com/flak/post/reop"
|
|
url "http://www.tedunangst.com/flak/files/reop-2.1.0.tgz"
|
|
sha256 "e429c7ff47f130bd465eaa0c23a1783b476bc484d32793592b54a568b55e49af"
|
|
revision 2
|
|
|
|
bottle do
|
|
cellar :any
|
|
sha256 "b1075b4d0f121d9f60a1f07ab4488ce225fcd151c1300a5b895bbe26575472a1" => :el_capitan
|
|
sha256 "024324a71df875f40d2b4a596ce6b97d7e5606496140a72c532d92dca5541125" => :yosemite
|
|
sha256 "c46860b76c7cef21c71d8dd369911c8c73d846efab659e3ca476bd6bc5730d56" => :mavericks
|
|
end
|
|
|
|
depends_on "libsodium"
|
|
|
|
def install
|
|
system "make", "-f", "GNUmakefile"
|
|
bin.install "reop"
|
|
man1.install "reop.1"
|
|
end
|
|
|
|
test do
|
|
(testpath/"pubkey").write <<-EOS.undent
|
|
-----BEGIN REOP PUBLIC KEY-----
|
|
ident:root
|
|
RWRDUxZNDeX4wcynGeCr9Bro6Ic7s1iqi1XHYacEaHoy+7jOP+ZE0yxR+2sfaph2MW15e8eUZvvI
|
|
+lxZaqFZR6Kc4uVJnvirIK97IQ==
|
|
-----END REOP PUBLIC KEY-----
|
|
EOS
|
|
|
|
(testpath/"msg").write <<-EOS.undent
|
|
testing one two three four
|
|
EOS
|
|
|
|
(testpath/"sig").write <<-EOS.undent
|
|
-----BEGIN REOP SIGNATURE-----
|
|
ident:root
|
|
RWQWTQ3l+MHMpx8RO/+BX/xxHn0PiSneiJ1Au2GurAmx4L942nZFBRDOVw2xLzvp/RggTVTZ46k+
|
|
GLVjoS6fSuLneCfaoRlYHgk=
|
|
-----END REOP SIGNATURE-----
|
|
EOS
|
|
|
|
system "#{bin}/reop", "-V", "-x", "sig", "-p", "pubkey", "-m", "msg"
|
|
end
|
|
end
|