46 lines
1.7 KiB
Ruby
46 lines
1.7 KiB
Ruby
class Dashing < Formula
|
|
desc "Generate Dash documentation from HTML files"
|
|
homepage "https://github.com/technosophos/dashing"
|
|
url "https://github.com/technosophos/dashing/archive/0.3.0.tar.gz"
|
|
sha256 "f6569f3df80c964c0482e7adc1450ea44532d8da887091d099ce42a908fc8136"
|
|
|
|
bottle do
|
|
cellar :any_skip_relocation
|
|
sha256 "8977385e74741b7e014e971a320f58c360eede59f68894f1539040b5af474a25" => :high_sierra
|
|
sha256 "09fb6574fe2cf30bb94197730b7e6d3117929607a571e42058a40a5e7b500e70" => :sierra
|
|
sha256 "b37d425623bdbb32fe99d58c6d15cbc0753706aad3758aaf95ed229316e2a185" => :el_capitan
|
|
end
|
|
|
|
depends_on "glide" => :build
|
|
depends_on "go" => :build
|
|
|
|
# Use ruby docs just as dummy documentation to test with
|
|
resource "ruby_docs_tarball" do
|
|
url "https://ruby-doc.org/downloads/ruby_2_5_0_core_rdocs.tgz"
|
|
sha256 "219e171641e979a5c8dee1b63347a1a26b94ba648aec96f7e6ed915d12bcaa15"
|
|
end
|
|
|
|
def install
|
|
ENV["GOPATH"] = buildpath
|
|
ENV["GLIDE_HOME"] = HOMEBREW_CACHE/"glide_home/#{name}"
|
|
|
|
(buildpath/"src/github.com/technosophos/dashing").install buildpath.children
|
|
cd "src/github.com/technosophos/dashing" do
|
|
system "glide", "install"
|
|
system "go", "build", "-o", bin/"dashing", "-ldflags",
|
|
"-X main.version=#{version}"
|
|
prefix.install_metafiles
|
|
end
|
|
end
|
|
|
|
test do
|
|
# Make sure that dashing creates its settings file and then builds an actual
|
|
# docset for Dash
|
|
testpath.install resource("ruby_docs_tarball")
|
|
system bin/"dashing", "create"
|
|
assert_predicate testpath/"dashing.json", :exist?
|
|
system bin/"dashing", "build", "."
|
|
file = testpath/"dashing.docset/Contents/Resources/Documents/goruby_c.html"
|
|
assert_predicate file, :exist?
|
|
end
|
|
end
|