58 lines
1.8 KiB
Ruby
58 lines
1.8 KiB
Ruby
class Minisign < Formula
|
|
desc "Sign files & verify signatures. Works with signify in OpenBSD."
|
|
homepage "https://jedisct1.github.io/minisign/"
|
|
url "https://github.com/jedisct1/minisign/archive/0.7.tar.gz"
|
|
sha256 "0c9f25ae647b6ba38cf7e6aea1da4e8fb20e1bc64ef0c679da737a38c8ad43ef"
|
|
|
|
bottle do
|
|
cellar :any
|
|
sha256 "2dc78271bcec93d6b2f9d33534cc8c0a322aa3250ee5824eaabcfd1872da06fa" => :sierra
|
|
sha256 "eda1ddf370982493aaa039c6056d0228041ff7a8784f2098e9133904a451d381" => :el_capitan
|
|
sha256 "f211d75128d691038180fc8a6acd2eed6880f67a769f643aa94f88ef26c6967f" => :yosemite
|
|
sha256 "352fc012382f22172b487831387f4a8159db1df819953165b56ae55506289fda" => :mavericks
|
|
end
|
|
|
|
depends_on "libsodium"
|
|
depends_on "cmake" => :build
|
|
|
|
def install
|
|
system "cmake", ".", *std_cmake_args
|
|
system "make"
|
|
system "make", "install"
|
|
end
|
|
|
|
test do
|
|
(testpath/"homebrew.txt").write "Hello World!"
|
|
(testpath/"keygen.sh").write <<-EOS.undent
|
|
#!/usr/bin/expect -f
|
|
set timeout -1
|
|
spawn #{bin}/minisign -G
|
|
expect -exact "Please enter a password to protect the secret key."
|
|
expect -exact "\n"
|
|
expect -exact "Password: "
|
|
send -- "Homebrew\n"
|
|
expect -exact "\r
|
|
Password (one more time): "
|
|
send -- "Homebrew\n"
|
|
expect eof
|
|
EOS
|
|
chmod 0755, testpath/"keygen.sh"
|
|
|
|
system "./keygen.sh"
|
|
assert File.exist?("minisign.pub")
|
|
assert File.exist?(".minisign/minisign.key")
|
|
|
|
(testpath/"signing.sh").write <<-EOS.undent
|
|
#!/usr/bin/expect -f
|
|
set timeout -1
|
|
spawn #{bin}/minisign -Sm homebrew.txt
|
|
expect -exact "Password: "
|
|
send -- "Homebrew\n"
|
|
expect eof
|
|
EOS
|
|
chmod 0755, testpath/"signing.sh"
|
|
|
|
system "./signing.sh"
|
|
assert File.exist?("homebrew.txt.minisig")
|
|
end
|
|
end
|