aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/app-engine-java-sdk.rb
blob: b5192c96cb4832a30b9e350e8374328449f7120a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
require "formula"

class AppEngineJavaSdk < Formula
  homepage "https://developers.google.com/appengine/docs/java/gettingstarted/introduction"
  url "https://storage.googleapis.com/appengine-sdks/featured/appengine-java-sdk-1.9.6.zip"
  sha1 "70bb53e9579500a768ed44c7f95b47f86578118e"

  def install
    rm Dir["bin/*.cmd"]
    libexec.install Dir["*"]
    bin.write_exec_script Dir["#{libexec}/bin/*"]
  end
end