2009-12-01 10:57:40 +00:00
|
|
|
require 'formula'
|
|
|
|
|
2011-03-10 05:11:03 +00:00
|
|
|
class GoogleAppEngine < Formula
|
2011-06-23 15:23:45 +00:00
|
|
|
url 'http://googleappengine.googlecode.com/files/google_appengine_1.5.1.zip'
|
2010-03-07 23:00:50 +00:00
|
|
|
homepage 'http://code.google.com/appengine/'
|
2011-06-23 15:23:45 +00:00
|
|
|
sha1 '2b2900ec5f2d9d51282645015b4f1bef07b1cc07'
|
2009-12-01 10:57:40 +00:00
|
|
|
|
|
|
|
def install
|
|
|
|
cd '..'
|
2010-03-07 23:23:37 +00:00
|
|
|
share.install 'google_appengine' => name
|
2010-05-05 18:48:56 +00:00
|
|
|
bin.mkpath
|
2009-12-01 10:57:40 +00:00
|
|
|
%w[appcfg.py bulkload_client.py bulkloader.py dev_appserver.py remote_api_shell.py].each do |fn|
|
2010-05-05 18:48:56 +00:00
|
|
|
ln_s share+name+fn, bin
|
2009-12-01 10:57:40 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|