homebrew-core/Formula/wiki.rb

28 lines
1.2 KiB
Ruby

class Wiki < Formula
desc "Fetch summaries from MediaWiki wikis, like Wikipedia"
homepage "https://github.com/walle/wiki"
url "https://github.com/walle/wiki/archive/v1.4.1.tar.gz"
sha256 "529c6a58b3b5c5eb3faab07f2bf752155868b912e4f753e432d14040ff4f4262"
license "MIT"
bottle do
sha256 cellar: :any_skip_relocation, arm64_big_sur: "102962e7b753737d622bbea4698f0282c64ea1b3b55c3f61e523c8c9378fcd35"
sha256 cellar: :any_skip_relocation, big_sur: "d7c353ca381bdfad07569b445ff29fe592979e6623354df939452528ecec76c0"
sha256 cellar: :any_skip_relocation, catalina: "ff424f6afbc0d2baab91cee289157d9c90623fa19b7d51574b75df455da76cd6"
sha256 cellar: :any_skip_relocation, mojave: "316687b381ca23ee0e81eb6e396d2c8c21a5eeaf05a9219ec56dd0024a8d9722"
sha256 cellar: :any_skip_relocation, high_sierra: "bd1b52730bbf5bc503d3fece003b069e248261616d9d02767ef019d87659bdd8"
end
depends_on "go" => :build
def install
system "go", "build", "-o", bin/"wiki", "cmd/wiki/main.go"
end
test do
assert_match version.to_s, shell_output("#{bin}/wiki --version")
assert_match "Read more: https://en.wikipedia.org/wiki/Go", shell_output("#{bin}/wiki golang")
end
end