homebrew-core/Formula/github-release.rb
2015-09-24 07:49:46 +01:00

30 lines
1 KiB
Ruby

class GithubRelease < Formula
desc "Create and edit releases on Github (and upload artifacts)"
homepage "https://github.com/aktau/github-release"
url "https://github.com/aktau/github-release/archive/v0.5.3.tar.gz"
sha256 "3649571e9f3f32d337c6d817275d9215ed5ed1e0b672817795adfe0f36ebd676"
head "https://github.com/aktau/github-release.git"
bottle do
cellar :any_skip_relocation
sha256 "1f18841cfc233675c30f20f41f5cee5a47cfcbaa5ac7888281f67308270c9eb3" => :el_capitan
sha1 "1ad266fc6c56b6631214785c764fee4e19aaeb4e" => :yosemite
sha1 "31c085f718e68352a2b2f22f601512a1ba9adb65" => :mavericks
sha1 "0e120d55f94ea274ead008610a86b46d478f41b7" => :mountain_lion
end
depends_on "go" => :build
def install
ENV["GOPATH"] = buildpath
system "make"
bin.install "github-release"
end
test do
system "#{bin}/github-release", "info", "--user", "aktau",
"--repo", "github-release",
"--tag", "v#{version}"
end
end