68 lines
2.4 KiB
Ruby
68 lines
2.4 KiB
Ruby
require "language/go"
|
|
|
|
class Immortal < Formula
|
|
desc "OS agnostic (*nix) cross-platform supervisor"
|
|
homepage "https://immortal.run/"
|
|
url "https://github.com/immortal/immortal/archive/0.13.2.tar.gz"
|
|
sha256 "f34674720828c984ef34df33b75b614fabe81e4fd50eb152746a33a273daa4f9"
|
|
revision 1
|
|
head "https://github.com/immortal/immortal.git"
|
|
|
|
bottle do
|
|
cellar :any_skip_relocation
|
|
sha256 "bdbc5524e4dbd498b6ca166d6cecc3f1a9a81a350b6928ce792d862a675ddc78" => :sierra
|
|
sha256 "2aaee2097647a7557c579ccc39201e730b3faa6ffaca3f8da1fd43735007c1fd" => :el_capitan
|
|
sha256 "12138067c20ac19d062d5fe1ecef989ed6c691bb0c873b5454ce674c21a0f468" => :yosemite
|
|
end
|
|
|
|
depends_on "go" => :build
|
|
|
|
go_resource "gopkg.in/yaml.v2" do
|
|
url "https://github.com/go-yaml/yaml.git",
|
|
:revision => "cd8b52f8269e0feb286dfeef29f8fe4d5b397e0b"
|
|
end
|
|
|
|
go_resource "github.com/nbari/violetear" do
|
|
url "https://github.com/nbari/violetear.git",
|
|
:revision => "502d8b0480c0d356d94b16b22ad222deec81e6cc"
|
|
end
|
|
|
|
go_resource "github.com/immortal/logrotate" do
|
|
url "https://github.com/immortal/logrotate.git",
|
|
:revision => "3691ab555939319a80a8833983faedb8b76d9cc6"
|
|
end
|
|
|
|
go_resource "github.com/immortal/multiwriter" do
|
|
url "https://github.com/immortal/multiwriter.git",
|
|
:revision => "2555774a03ac1d12b5bb4392858959ee50f78884"
|
|
end
|
|
|
|
go_resource "github.com/immortal/natcasesort" do
|
|
url "https://github.com/immortal/natcasesort.git",
|
|
:revision => "69368b73881a69041466dd2b4fc0373f8e47db15"
|
|
end
|
|
|
|
go_resource "github.com/immortal/xtime" do
|
|
url "https://github.com/immortal/xtime.git",
|
|
:revision => "fb1aca1146ea82769e8433f5bb22f373765e7ecc"
|
|
end
|
|
|
|
def install
|
|
ENV["GOPATH"] = buildpath
|
|
(buildpath/"src/github.com/immortal/immortal").install buildpath.children
|
|
Language::Go.stage_deps resources, buildpath/"src"
|
|
cd "src/github.com/immortal/immortal" do
|
|
ldflags = "-s -w -X main.version=#{version}"
|
|
system "go", "build", "-ldflags", ldflags, "-o", "#{bin}/immortal", "cmd/immortal/main.go"
|
|
system "go", "build", "-ldflags", ldflags, "-o", "#{bin}/immortalctl", "cmd/immortalctl/main.go"
|
|
system "go", "build", "-ldflags", ldflags, "-o", "#{bin}/immortaldir", "cmd/immortaldir/main.go"
|
|
man8.install Dir["man/*.8"]
|
|
end
|
|
end
|
|
|
|
test do
|
|
system bin/"immortal", "-v"
|
|
system bin/"immortalctl", "-v"
|
|
system bin/"immortaldir", "-v"
|
|
end
|
|
end
|