54 lines
1.7 KiB
Ruby
54 lines
1.7 KiB
Ruby
require "language/go"
|
|
|
|
class Forego < Formula
|
|
homepage "https://github.com/ddollar/forego"
|
|
url "https://github.com/ddollar/forego/archive/v0.16.1.tar.gz"
|
|
sha256 "d4c8305262ac18c7e51d9d8028827f83b37fb3f9373d304686d084d68033ac6d"
|
|
|
|
head "https://github.com/ddollar/forego.git"
|
|
|
|
bottle do
|
|
cellar :any
|
|
sha256 "d868a7568c0c80b6af1cb8582b5c7341c1aa42b7aa1f7dc384f20ccca6bb1497" => :yosemite
|
|
sha256 "f0a098da6534c7a2f13e05ef129ab33a6a738251ffaaffe9792d28f300a992f2" => :mavericks
|
|
sha256 "8b544fd274c115758cf3ecec09e5c2f66e9f54663bc28b86d55bb310c94e57a2" => :mountain_lion
|
|
end
|
|
|
|
depends_on "go" => :build
|
|
|
|
go_resource "github.com/tools/godep" do
|
|
url "https://github.com/tools/godep.git",
|
|
:revision => "58d90f262c13357d3203e67a33c6f7a9382f9223"
|
|
end
|
|
|
|
go_resource "github.com/kr/fs" do
|
|
url "https://github.com/kr/fs.git",
|
|
:revision => "2788f0dbd16903de03cb8186e5c7d97b69ad387b"
|
|
end
|
|
|
|
go_resource "golang.org/x/tools" do
|
|
url "https://go.googlesource.com/tools",
|
|
:using => :git,
|
|
:revision => "b1aed1a596ad02d2aa2eb5c5af431a7ba2f6afc4"
|
|
end
|
|
|
|
def install
|
|
ENV["GOPATH"] = buildpath
|
|
mkdir_p buildpath/"src/github.com/ddollar/"
|
|
ln_sf buildpath, buildpath/"src/github.com/ddollar/forego"
|
|
Language::Go.stage_deps resources, buildpath/"src"
|
|
|
|
cd "src/github.com/tools/godep" do
|
|
system "go", "install"
|
|
end
|
|
|
|
ldflags = "-X main.Version #{version} -X main.allowUpdate false"
|
|
system "./bin/godep", "go", "build", "-ldflags", ldflags, "-o", "forego"
|
|
bin.install "forego"
|
|
end
|
|
|
|
test do
|
|
(testpath/"Procfile").write("web: echo \"it works!\"")
|
|
assert `#{bin}/forego start` =~ /it works!/
|
|
end
|
|
end
|