31 lines
993 B
Ruby
31 lines
993 B
Ruby
class Geph2 < Formula
|
|
desc "Modular Internet censorship circumvention system"
|
|
homepage "https://geph.io"
|
|
url "https://github.com/geph-official/geph2/archive/v0.22.2.tar.gz"
|
|
sha256 "dd1ccd9c5aac06b46d57b9ba7aab00b6f42b3ec8fde85d00f09e2e474e7c1dc1"
|
|
license "GPL-3.0"
|
|
|
|
bottle do
|
|
cellar :any_skip_relocation
|
|
sha256 "7c48c5f3498c0baa1aacd187d715e12ef0625eed6012af544e8a10ff3768a2ef" => :catalina
|
|
sha256 "7c48c5f3498c0baa1aacd187d715e12ef0625eed6012af544e8a10ff3768a2ef" => :mojave
|
|
sha256 "7c48c5f3498c0baa1aacd187d715e12ef0625eed6012af544e8a10ff3768a2ef" => :high_sierra
|
|
end
|
|
|
|
depends_on "go" => :build
|
|
|
|
def install
|
|
bin_path = buildpath/"src/github.com/geph-official/geph2"
|
|
bin_path.install Dir["*"]
|
|
cd bin_path/"cmd/geph-client" do
|
|
ENV["CGO_ENABLED"] = "0"
|
|
system "go", "build", "-o",
|
|
bin/"geph-client", "-v", "-trimpath"
|
|
end
|
|
end
|
|
|
|
test do
|
|
assert_match "-username", shell_output("#{bin}/geph-client -h 2>&1", 2)
|
|
end
|
|
end
|