homebrew-core/Formula/kerl.rb
2016-05-20 21:01:03 +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.1.1.tar.gz"
sha256 "7719c8daf24c12c676757cd4681367c1a6da86672b343b7b93f714f70ace6b58"
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