aws-apigateway-importer 1.0.1 (new formula)

Closes Homebrew/homebrew#46764.

Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
This commit is contained in:
Colin Kennedy 2015-12-09 21:38:53 -06:00 committed by Mike McQuaid
parent 81aaccaf81
commit 0795531ec5

View file

@ -0,0 +1,20 @@
class AwsApigatewayImporter < Formula
desc "AWS API Gateway Importer"
homepage "https://github.com/awslabs/aws-apigateway-importer"
url "https://github.com/awslabs/aws-apigateway-importer/archive/aws-apigateway-importer-1.0.1.tar.gz"
sha256 "1aecfd348135c2e364ce5e105d91d5750472ac4cb8848679d774a2ac00024d26"
depends_on :java => "1.7+"
depends_on "maven" => :build
def install
ENV["_JAVA_OPTIONS"] = "-Duser.home=#{buildpath}"
system "mvn", "assembly:assembly"
libexec.install "target/aws-apigateway-importer-1.0.1-jar-with-dependencies.jar"
bin.write_jar_script libexec/"aws-apigateway-importer-1.0.1-jar-with-dependencies.jar", "aws-api-import"
end
test do
assert_match(/^Usage:\s+aws-api-import/, shell_output("#{bin}/aws-api-import --help"))
end
end