homebrew-core/Formula/google-app-engine.rb
Laurent Raufaste c07a94496a Google App Engine 1.5.4
Signed-off-by: Laurent Raufaste <analogue@glop.org>
Signed-off-by: Jack Nagel <jacknagel@gmail.com>
2011-09-12 21:05:31 -05:00

16 lines
463 B
Ruby

require 'formula'
class GoogleAppEngine < Formula
url 'http://googleappengine.googlecode.com/files/google_appengine_1.5.4.zip'
homepage 'http://code.google.com/appengine/'
sha1 '0c580fa233527dd701d9363eebc8ee0a7fe8dd95'
def install
cd '..'
share.install 'google_appengine' => name
bin.mkpath
%w[appcfg.py bulkload_client.py bulkloader.py dev_appserver.py remote_api_shell.py].each do |fn|
ln_s share+name+fn, bin
end
end
end