homebrew-core/Formula/kerl.rb
ilovezfs 45de575e1b kerl 1.3.0
Closes #2558.

Signed-off-by: ilovezfs <ilovezfs@icloud.com>
2016-07-01 22:17:48 -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.0.tar.gz"
sha256 "317cd49fa86da4be902c073742eb502ef765abe667ae3ff573230ad5c0c087e5"
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