7ff219fbfa
Closes #3185. Signed-off-by: ilovezfs <ilovezfs@icloud.com>
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.3.2.tar.gz"
|
|
sha256 "2209b316b15492ac81411dcbb3034de1b0e61cbb0d590966e1c908ee6c30e795"
|
|
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
|