aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/google-app-engine.rb
blob: ad598f9fb8ef4707e44d86dbfcb02f920b76769c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
require 'formula'

class GoogleAppEngine < Formula
  homepage 'https://developers.google.com/appengine/'
  url 'http://googleappengine.googlecode.com/files/google_appengine_1.7.2.zip'
  sha1 '519b914a41f1b323315c5f71ce9302f8ac6e044e'

  def install
    cd '..'
    share.install 'google_appengine' => name
    bin.mkpath
    %w[
      api_server.py appcfg.py bulkloader.py bulkload_client.py dev_appserver.py download_appstats.py remote_api_shell.py
    ].each do |fn|
      ln_s share+name+fn, bin
    end
  end
end