homebrew-core/Formula/skinny.rb
Kazuhiro Sera 6ce4caae84 skinny 2.0.4
Closes Homebrew/homebrew#47925.

Signed-off-by: Baptiste Fontaine <batifon@yahoo.fr>
2016-01-11 17:26:32 +01:00

21 lines
576 B
Ruby

class Skinny < Formula
desc "Full-stack web app framework in Scala"
homepage "http://skinny-framework.org/"
url "https://github.com/skinny-framework/skinny-framework/releases/download/2.0.4/skinny-2.0.4.tar.gz"
sha256 "f189bdf68bc27ad2d6aec00e0a440553d980d2b00af985a3f00004736960b0d4"
bottle :unneeded
def install
libexec.install Dir["*"]
(bin/"skinny").write <<-EOS.undent
#!/bin/bash
export PATH=#{bin}:$PATH
PREFIX="#{libexec}" exec "#{libexec}/skinny" "$@"
EOS
end
test do
system bin/"skinny", "new", "myapp"
end
end