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.1.tar.gz"
|
|
sha256 "5f37bac62a5443012f39c233073275309498b3da9422f9fb9525a17b263a67e2"
|
|
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
|