61b2307139
brewkit.rb changes ENV destructively, so lets not do that everytime a formula is required. Now it's possible for other tools to require a formula description without worrying about side-effects.
11 lines
308 B
Ruby
11 lines
308 B
Ruby
require 'formula'
|
|
|
|
class AppEngineJavaSdk <Formula
|
|
@url='http://googleappengine.googlecode.com/files/appengine-java-sdk-1.2.5.zip'
|
|
@homepage='http://code.google.com/appengine/docs/java/overview.html'
|
|
@sha1='f0ef8454f72b550791ac856849e322054c4bc8f4'
|
|
|
|
def install
|
|
prefix.install Dir['*']
|
|
end
|
|
end
|