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'
url 'http://googleappengine.googlecode.com/files/appengine-java-sdk-1.7.2.zip'
sha1 '5adcecb9c76937de5afeb3cf1fe17a6cce24f130'
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