homebrew-core/Formula/kerl.rb
2017-10-24 03:44:06 -07: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.7.0.tar.gz"
sha256 "12a177475f9e29006267fbe94873f7360df711619578aad9a1ba44ff3f2b15db"
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