homebrew-core/Formula/app-engine-java-sdk.rb

25 lines
564 B
Ruby
Raw Normal View History

require 'formula'
2011-03-10 05:11:03 +00:00
class AppEngineJavaSdk < Formula
homepage 'http://code.google.com/appengine/docs/java/overview.html'
2012-05-23 02:57:22 +00:00
url 'http://googleappengine.googlecode.com/files/appengine-java-sdk-1.6.6.zip'
sha1 'bb67c8984606fc8d28ab4f49afc088b5b70d9097'
def shim_script target
<<-EOS.undent
#!/bin/bash
2012-02-11 23:41:37 +00:00
"#{libexec}/bin/#{target}" "$@"
EOS
end
def install
rm Dir['bin/*.cmd']
libexec.install Dir['*']
Dir["#{libexec}/bin/*"].each do |b|
n = Pathname.new(b).basename
(bin+n).write shim_script(n)
end
end
end