44 lines
1.4 KiB
Ruby
44 lines
1.4 KiB
Ruby
require "language/go"
|
|
|
|
class Mmark < Formula
|
|
desc "Powerful markdown processor in Go geared towards the IETF"
|
|
homepage "https://github.com/miekg/mmark"
|
|
url "https://github.com/miekg/mmark/archive/v1.3.4.tar.gz"
|
|
sha256 "e03744da8d16cc742423685e2ad7cb1af61bf6dc5364c6875057b7c28ab26bb8"
|
|
|
|
bottle do
|
|
cellar :any_skip_relocation
|
|
sha256 "f77cf57d876dcefefb4e7405b43423e03b59f014cbfaecce1cd6d4c640fcaf1c" => :sierra
|
|
sha256 "7e24b299282e0649411e3e664035edcffc33ff1b111eb921a04726653ecf9419" => :el_capitan
|
|
sha256 "e06f3c226006f9241659fb33d24da96d35e2c4fcb746c53a871acb16c5daab18" => :yosemite
|
|
end
|
|
|
|
depends_on "go" => :build
|
|
|
|
go_resource "github.com/BurntSushi/toml" do
|
|
url "https://github.com/BurntSushi/toml.git",
|
|
:revision => "443a628bc233f634a75bcbdd71fe5350789f1afa"
|
|
end
|
|
|
|
resource "test" do
|
|
url "https://raw.githubusercontent.com/miekg/mmark/master/rfc/rfc1149.md"
|
|
sha256 "f4227951dc7a6ac3a579a44957d8c78080d01838bb78d4e0416f45bf5d99b626"
|
|
end
|
|
|
|
def install
|
|
ENV["GOPATH"] = buildpath
|
|
mkdir_p buildpath/"src/github.com/miekg/"
|
|
ln_sf buildpath, buildpath/"src/github.com/miekg/mmark"
|
|
Language::Go.stage_deps resources, buildpath/"src"
|
|
|
|
cd "mmark" do
|
|
system "go", "build", "-o", bin/"mmark"
|
|
end
|
|
end
|
|
|
|
test do
|
|
resource("test").stage do
|
|
system "#{bin}/mmark", "-xml2", "-page", "rfc1149.md"
|
|
end
|
|
end
|
|
end
|