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

17 lines
493 B
Ruby
Raw Normal View History

require 'formula'
class GoAppEngine32 < Formula
2012-05-23 02:58:37 +00:00
url 'http://googleappengine.googlecode.com/files/go_appengine_sdk_darwin_386-1.6.6.zip'
homepage 'http://code.google.com/appengine/docs/go/overview.html'
2012-05-23 02:58:37 +00:00
sha1 'cd234195261bf0731018e17762fe75fc2c088dba'
def install
cd '..'
share.install 'google_appengine' => name
bin.mkpath
%w[appcfg.py bulkload_client.py bulkloader.py dev_appserver.py remote_api_shell.py].each do |fn|
ln_s share+name+fn, bin
end
end
end