homebrew-core/Formula/kerl.rb
ilovezfs 945cf78fa8 kerl 1.3.3
Closes #5652.

Signed-off-by: ilovezfs <ilovezfs@icloud.com>
2016-10-07 02:01:29 -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.3.3.tar.gz"
sha256 "d1e66fe01ee1af0acf58c63f3efe77e5206b7957c6773dff2a8415a9c7b5a7b6"
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