2016-04-13 20:32:44 +00:00
|
|
|
class Kerl < Formula
|
|
|
|
desc "Easy building and installing of Erlang/OTP instances"
|
2016-04-17 15:33:32 +00:00
|
|
|
homepage "https://github.com/kerl/kerl"
|
2016-07-21 10:39:57 +00:00
|
|
|
url "https://github.com/kerl/kerl/archive/1.3.2.tar.gz"
|
|
|
|
sha256 "2209b316b15492ac81411dcbb3034de1b0e61cbb0d590966e1c908ee6c30e795"
|
2016-04-17 15:33:32 +00:00
|
|
|
head "https://github.com/kerl/kerl.git"
|
2016-04-13 20:32:44 +00:00
|
|
|
|
|
|
|
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
|