homebrew-core/Formula/go-app-engine-64.rb

18 lines
531 B
Ruby
Raw Normal View History

2014-06-10 21:53:36 +00:00
require "formula"
class GoAppEngine64 < Formula
2014-06-10 21:53:36 +00:00
homepage "http://code.google.com/appengine/docs/go/overview.html"
2014-11-04 16:19:11 +00:00
url "https://storage.googleapis.com/appengine-sdks/featured/go_appengine_sdk_darwin_amd64-1.9.15.zip"
sha1 "de638e484af2e6d94f5a8cbdc24a7b9c791c6531"
def install
2014-06-10 21:53:36 +00:00
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|
2014-03-25 15:07:45 +00:00
bin.install_symlink share/name/fn
end
end
end