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

class GoogleAppEngine < Formula
  homepage 'http://code.google.com/appengine/'
  url 'http://googleappengine.googlecode.com/files/google_appengine_1.6.3.zip'
  sha1 '0f57de7ff445872f85d6dc5192ed4d5c89c8aef6'

  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