33 lines
1.2 KiB
Ruby
33 lines
1.2 KiB
Ruby
class Smimesign < Formula
|
|
desc "S/MIME signing utility for use with Git"
|
|
homepage "https://github.com/github/smimesign"
|
|
url "https://github.com/github/smimesign/archive/v0.0.13.tar.gz"
|
|
sha256 "baf3e1c0a64ca1d49be8a4e99640679ba2b2870e907e88be1e9c7f1566d0f206"
|
|
|
|
bottle do
|
|
cellar :any_skip_relocation
|
|
sha256 "c9eb62971a802249e91849385dd3ec535f163dfe0be0ce5de52d56dae08789b5" => :mojave
|
|
sha256 "468d431ade8f15633d1ae6a9bc6b108122d8ea6ad7e99a956eff52c09ad29ba9" => :high_sierra
|
|
sha256 "5e08213a38d69edfc45b1ffc8c2ba97ba13226f267b601648b3ed77e5b3ff12d" => :sierra
|
|
end
|
|
|
|
depends_on "go" => :build
|
|
depends_on :macos => :sierra
|
|
|
|
def install
|
|
ENV["GO111MODULE"] = "on"
|
|
ENV["GOPATH"] = buildpath
|
|
(buildpath/"src/github.com/github/smimesign").install buildpath.children
|
|
|
|
cd "src/github.com/github/smimesign" do
|
|
system "go", "build", "-o", bin/"smimesign", "-ldflags", "-X main.versionString=#{version}"
|
|
prefix.install_metafiles
|
|
end
|
|
end
|
|
|
|
test do
|
|
assert_match version.to_s, shell_output("#{bin}/smimesign --version")
|
|
system "#{bin}/smimesign", "--list-keys"
|
|
assert_match "could not find identity matching specified user-id: bad@identity", shell_output("#{bin}/smimesign -su bad@identity 2>&1", 1)
|
|
end
|
|
end
|