2012-01-31 23:59:17 +00:00
|
|
|
require 'formula'
|
|
|
|
|
2012-02-03 09:56:24 +00:00
|
|
|
class GoAppEngine32 < Formula
|
2012-01-31 23:59:17 +00:00
|
|
|
homepage 'http://code.google.com/appengine/docs/go/overview.html'
|
2013-11-20 14:08:09 +00:00
|
|
|
url 'http://googleappengine.googlecode.com/files/go_appengine_sdk_darwin_386-1.8.8.zip'
|
|
|
|
sha1 'fc087bb492fe2560d1d328ef4e5c65273f94a97a'
|
2012-01-31 23:59:17 +00:00
|
|
|
|
|
|
|
def install
|
|
|
|
cd '..'
|
2013-07-17 19:46:29 +00:00
|
|
|
share.install 'go_appengine' => name
|
2012-01-31 23:59:17 +00:00
|
|
|
bin.mkpath
|
2012-07-27 07:00:17 +00:00
|
|
|
%w[
|
2013-11-21 06:35:38 +00:00
|
|
|
api_server.py appcfg.py bulkloader.py bulkload_client.py dev_appserver.py download_appstats.py goapp
|
2012-07-27 07:00:17 +00:00
|
|
|
].each do |fn|
|
2012-01-31 23:59:17 +00:00
|
|
|
ln_s share+name+fn, bin
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|