cab35040bc
Closes #488. Signed-off-by: Martin Afanasjew <martin@afanasjew.de>
19 lines
532 B
Ruby
19 lines
532 B
Ruby
class Kerl < Formula
|
|
desc "Easy building and installing of Erlang/OTP instances"
|
|
homepage "https://github.com/kerl/kerl"
|
|
url "https://github.com/kerl/kerl/archive/0.9.2.tar.gz"
|
|
sha256 "e535a53cc4b680736a8ea2d98aa850f8c13a652e00d484d0962e68fa9330e610"
|
|
head "https://github.com/kerl/kerl.git"
|
|
|
|
bottle :unneeded
|
|
|
|
def install
|
|
bin.install "kerl"
|
|
bash_completion.install "bash_completion/kerl"
|
|
zsh_completion.install "zsh_completion/_kerl"
|
|
end
|
|
|
|
test do
|
|
system "#{bin}/kerl", "list", "releases"
|
|
end
|
|
end
|