homebrew-core/Formula/hugo.rb
2018-02-27 03:00:28 -08:00

43 lines
1.4 KiB
Ruby

class Hugo < Formula
desc "Configurable static site generator"
homepage "https://gohugo.io/"
url "https://github.com/gohugoio/hugo/archive/v0.37.tar.gz"
sha256 "29b2b472e5baaa2056c5744c4ce0341ff7a83990a822eb53012baced535ca083"
head "https://github.com/gohugoio/hugo.git"
bottle do
cellar :any_skip_relocation
sha256 "184e4bb5606d61dd91de7c88562035a05f8b84b9f08c6b69458e90ad7cdafea3" => :high_sierra
sha256 "9817aadce4a2efd3ae06ea0677096f0b58acf8a0e11ce931e25c40109376dfb9" => :sierra
sha256 "8f53fd499289ec39c14f59e013248712c0259494be973059f6e6feb3f93366ef" => :el_capitan
end
depends_on "dep" => :build
depends_on "go" => :build
def install
ENV["GOPATH"] = buildpath
(buildpath/"src/github.com/gohugoio/hugo").install buildpath.children
cd "src/github.com/gohugoio/hugo" do
system "dep", "ensure"
system "go", "build", "-o", bin/"hugo", "main.go"
# Build bash completion
system bin/"hugo", "gen", "autocomplete", "--completionfile=hugo.sh"
bash_completion.install "hugo.sh"
# Build man pages; target dir man/ is hardcoded :(
(Pathname.pwd/"man").mkpath
system bin/"hugo", "gen", "man"
man1.install Dir["man/*.1"]
prefix.install_metafiles
end
end
test do
site = testpath/"hops-yeast-malt-water"
system "#{bin}/hugo", "new", "site", site
assert_predicate testpath/"#{site}/config.toml", :exist?
end
end