blob: 18565ec56297279b654aabefada7f7150e19c3ab (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
require 'formula'
class GoAppEngine64 < Formula
homepage 'http://code.google.com/appengine/docs/go/overview.html'
url 'https://commondatastorage.googleapis.com/appengine-sdks/featured/go_appengine_sdk_darwin_amd64-1.9.4.zip'
sha1 'b5f85c0ecfd542cc4fc2b1c9ed4a0dc2117cc088'
def install
cd '..'
share.install 'go_appengine' => name
%w[
api_server.py appcfg.py bulkloader.py bulkload_client.py dev_appserver.py download_appstats.py goapp
].each do |fn|
bin.install_symlink share/name/fn
end
end
end
|