2ca78c4d2e
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>
13 lines
383 B
Ruby
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
|