17 lines
538 B
Ruby
17 lines
538 B
Ruby
require 'formula'
|
|
|
|
class GoAppEngine32 < Formula
|
|
homepage 'http://code.google.com/appengine/docs/go/overview.html'
|
|
url 'https://commondatastorage.googleapis.com/appengine-sdks/featured/go_appengine_sdk_darwin_386-1.9.3.zip'
|
|
sha1 'df881a99aa2ff7bfec5414f1fc980323a5cb7cc0'
|
|
|
|
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
|