homebrew-core/Formula/google-app-engine.rb

17 lines
462 B
Ruby
Raw Normal View History

2009-12-01 10:57:40 +00:00
require 'formula'
class GoogleAppEngine <Formula
url 'http://googleappengine.googlecode.com/files/google_appengine_1.3.8.zip'
homepage 'http://code.google.com/appengine/'
sha1 'e2f5ba2f846aab90af41c193ac9c4f8adedad14f'
2009-12-01 10:57:40 +00:00
def install
cd '..'
share.install 'google_appengine' => name
bin.mkpath
2009-12-01 10:57:40 +00:00
%w[appcfg.py bulkload_client.py bulkloader.py dev_appserver.py remote_api_shell.py].each do |fn|
ln_s share+name+fn, bin
2009-12-01 10:57:40 +00:00
end
end
end