github-markdown-toc 0.5.0 (new formula)

New Formula of a go-based tool to scan a markdown document and produce
anchors and Table of Contents-style links for use in documents like a
GitHub README.md.

Closes Homebrew/legacy-homebrew#48056.

Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
This commit is contained in:
Mike Fiedler 2016-01-13 23:46:59 -05:00 committed by Mike McQuaid
parent 3b44daadb4
commit 0fc6b4a5fa

View file

@ -0,0 +1,40 @@
require "language/go"
class GithubMarkdownToc < Formula
desc "Easy TOC creation for GitHub README.md (in go)"
homepage "https://github.com/ekalinin/github-markdown-toc.go"
url "https://github.com/ekalinin/github-markdown-toc.go/archive/0.5.0.tar.gz"
sha256 "78ea87ab18fd213e52b217d7ec0bc4eb56a8dbeb2331b82376e6a741b0121d1d"
depends_on "go" => :build
go_resource "github.com/alecthomas/template" do
url "https://github.com/alecthomas/template.git",
:revision => "14fd436dd20c3cc65242a9f396b61bfc8a3926fc"
end
go_resource "github.com/alecthomas/units" do
url "https://github.com/alecthomas/units.git",
:revision => "2efee857e7cfd4f3d0138cc3cbb1b4966962b93a"
end
go_resource "gopkg.in/alecthomas/kingpin.v2" do
url "https://github.com/alecthomas/kingpin.git",
:revision => "v2.1.11"
end
def install
ENV["GOPATH"] = buildpath
mkdir_p buildpath/"src/github.com/ekalinin/"
ln_sf buildpath, buildpath/"src/github.com/ekalinin/github-markdown-toc.go"
Language::Go.stage_deps resources, buildpath/"src"
system "go", "build", "-o", "gh-md-toc", "main.go"
bin.install "gh-md-toc"
end
test do
system bin/"gh-md-toc", "--version"
system bin/"gh-md-toc", "../README.md"
end
end