a1e99b7d98
Signed-off-by: Jack Nagel <jacknagel@gmail.com>
18 lines
522 B
Ruby
18 lines
522 B
Ruby
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.9.zip'
|
|
sha1 '697ea243d50632751417b83dcecc702c8196564d'
|
|
|
|
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 goapp
|
|
].each do |fn|
|
|
ln_s share+name+fn, bin
|
|
end
|
|
end
|
|
end
|