45 lines
1.3 KiB
Ruby
45 lines
1.3 KiB
Ruby
class Gwt < Formula
|
|
desc "Google web toolkit"
|
|
homepage "http://www.gwtproject.org/"
|
|
url "https://storage.googleapis.com/gwt-releases/gwt-2.9.0.zip"
|
|
sha256 "253911e3be63c19628ffef5c1082258704e7896f81b855338c6a036f524fbd42"
|
|
license "Apache-2.0"
|
|
|
|
livecheck do
|
|
url "https://github.com/gwtproject/gwt.git"
|
|
regex(/^v?(\d+(?:\.\d+)+)$/i)
|
|
end
|
|
|
|
bottle :unneeded
|
|
|
|
def install
|
|
rm Dir["*.cmd"] # remove Windows cmd files
|
|
libexec.install Dir["*"]
|
|
|
|
# Don't use the GWT scripts because they expect the GWT jars to
|
|
# be in the same place as the script.
|
|
(bin/"webAppCreator").write <<~EOS
|
|
#!/bin/sh
|
|
HOMEDIR=#{libexec}
|
|
java -cp "$HOMEDIR/gwt-user.jar:$HOMEDIR/gwt-dev.jar" com.google.gwt.user.tools.WebAppCreator "$@";
|
|
EOS
|
|
|
|
(bin/"benchmarkViewer").write <<~EOS
|
|
#!/bin/sh
|
|
APPDIR=#{libexec}
|
|
java -Dcom.google.gwt.junit.reportPath="$1" -cp "$APPDIR/gwt-dev.jar" com.google.gwt.dev.RunWebApp -port auto $APPDIR/gwt-benchmark-viewer.war;
|
|
EOS
|
|
|
|
(bin/"i18nCreator").write <<~EOS
|
|
#!/bin/sh
|
|
HOMEDIR=#{libexec}
|
|
java -cp "$HOMEDIR/gwt-user.jar:$HOMEDIR/gwt-dev.jar" com.google.gwt.i18n.tools.I18NCreator "$@";
|
|
EOS
|
|
end
|
|
|
|
test do
|
|
system bin/"webAppCreator", "sh.brew.test"
|
|
assert_predicate testpath/"src/sh/brew/test.gwt.xml", :exist?
|
|
end
|
|
end
|