homebrew-core/Formula/wiki.rb

42 lines
1.3 KiB
Ruby

require "language/go"
class Wiki < Formula
desc "Fetch summaries from MediaWiki wikis, like Wikipedia"
homepage "https://github.com/walle/wiki"
url "https://github.com/walle/wiki/archive/1.3.0.tar.gz"
sha256 "c12edcaed5c9d5e69fc43e77713a68948a399017467d248ba59367b5d458a9e6"
bottle do
cellar :any_skip_relocation
sha256 "97f41b03a165bc89869253240e906e0075ec936069a08ecd483c516bb987e3ce" => :el_capitan
sha256 "36d2954d46a09d460740d16771792ed832b3b81770a5b28a86b28f3e2bd65a53" => :yosemite
sha256 "271812a50a0455e1947006624f0442f084c69ab387cc858d41be26a4cce195f0" => :mavericks
end
depends_on "go" => :build
conflicts_with "osxutils", :because => "both install `wiki` binaries"
go_resource "github.com/mattn/go-colorable" do
url "https://github.com/mattn/go-colorable.git",
:revision => "40e4aedc8fabf8c23e040057540867186712faa5"
end
def install
ENV["GOPATH"] = buildpath
wikipath = buildpath/"src/github.com/walle/wiki"
wikipath.install Dir["{*,.git}"]
Language::Go.stage_deps resources, buildpath/"src"
cd "src/github.com/walle/wiki" do
system "go", "build", "-o", "build/wiki", "cmd/wiki/main.go"
bin.install "build/wiki"
man1.install "_doc/wiki.1"
end
end
test do
assert_match "Read more: https://en.wikipedia.org/wiki/Go", shell_output("#{bin}/wiki golang")
end
end