19 lines
532 B
Ruby
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.4.0.tar.gz"
|
|
sha256 "6fcef15b2e54e2185beaa8a1bf200b9b13bda25af859b144a9efa5fd7a17bead"
|
|
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
|