homebrew-core/Formula/app-engine-java-sdk.rb
Scott Haug 2ca78c4d2e Fix bin linking for app-engine-java-sdk
Previous code was linking '*' to libexec/bin. Fixed by globbing
the files in the libexec directory.

Closes Homebrew/homebrew#24793.

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2013-11-29 22:53:52 -08:00

13 lines
383 B
Ruby

require 'formula'
class AppEngineJavaSdk < Formula
homepage 'https://developers.google.com/appengine/docs/java/overview'
url 'http://googleappengine.googlecode.com/files/appengine-java-sdk-1.8.8.zip'
sha1 'ecb3f8ed390e7e68fb3622b2aca523ae0818d4ab'
def install
rm Dir['bin/*.cmd']
libexec.install Dir['*']
bin.write_exec_script Dir["#{libexec}/bin/*"]
end
end