762a2ad3ac
Created a formula for git-octopus at lesfurets Closes Homebrew/homebrew#38975. Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
14 lines
376 B
Ruby
14 lines
376 B
Ruby
class GitOctopus < Formula
|
|
homepage "https://github.com/lesfurets/git-octopus"
|
|
url "https://github.com/lesfurets/git-octopus/archive/v1.0.tar.gz"
|
|
sha256 "c83ab4aa3d8ec770f4f05619239a7852c871216a108b4e287c13efb10e3db5db"
|
|
|
|
def install
|
|
bin.install "bin/git-octopus"
|
|
man1.install "man/man1/git-octopus.1"
|
|
end
|
|
|
|
test do
|
|
system "#{bin}/git-octopus"
|
|
end
|
|
end
|