homebrew-core/Formula/kerl.rb
2018-07-04 08:00:34 +01: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.3.tar.gz"
sha256 "2e48906d6e97c8e6290c9b8889c144cca0b5d396d0d10e6c4b768fd5c4abf9af"
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