homebrew-core/Formula/go-app-engine-32.rb
2014-03-25 10:08:13 -05:00

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.1.zip'
sha1 '88615159ed8cc79ff847583370bcdba6f4fd2643'
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