blob: e4fb59dfd7cdcb100a6ef84e2471ff671c656e74 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
require 'formula'
class GoAppEngine32 < Formula
homepage 'http://code.google.com/appengine/docs/go/overview.html'
url 'http://googleappengine.googlecode.com/files/go_appengine_sdk_darwin_386-1.8.5.zip'
sha1 '00b3dd091747734c9f3f8612ce413e2ab541e5e4'
def install
cd '..'
share.install 'go_appengine' => name
bin.mkpath
%w[
api_server.py appcfg.py bulkloader.py bulkload_client.py dev_appserver.py download_appstats.py
].each do |fn|
ln_s share+name+fn, bin
end
end
end
|