homebrew-core/Formula/kerl.rb
www-data a2d1916c2d kerl 1.8.6
Closes #44924.

Signed-off-by: FX Coudert <fxcoudert@gmail.com>
2019-10-05 09:55:24 +02:00

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/1.8.6.tar.gz"
sha256 "990cf0addc6c3733473a34442bb35aeeed2668e87e416bd694f4dec3f9799c75"
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