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

class GoogleAppEngine < Formula
  url 'http://googleappengine.googlecode.com/files/google_appengine_1.5.1.zip'
  homepage 'http://code.google.com/appengine/'
  sha1 '2b2900ec5f2d9d51282645015b4f1bef07b1cc07'

  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