blob: a82ad51ac2406eb0cc196dddfecef6b596ea8180 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
require 'formula'
class GoAppEngine64 < Formula
homepage 'http://code.google.com/appengine/docs/go/overview.html'
url 'http://googleappengine.googlecode.com/files/go_appengine_sdk_darwin_amd64-1.8.3.zip'
sha1 'cbb3e63aeb17f0ed5edac28d8f447d5ecbfcbd9c'
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
|