forked from aws/homebrew-tap
-
Notifications
You must be signed in to change notification settings - Fork 0
/
aws-simple-ec2-cli.rb
32 lines (26 loc) · 946 Bytes
/
aws-simple-ec2-cli.rb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
# -*- coding: utf-8 -*-
require_relative '../ConfigProvider/config_provider'
class AwsSimpleEc2Cli < Formula
$config_provider = ConfigProvider.new('aws-simple-ec2-cli')
desc "AWS Simple EC2 CLI is a tool that simplifies the process of launching, connecting and terminating an EC2 instance"
homepage "https://github.com/awslabs/aws-simple-ec2-cli/"
version $config_provider.version
if OS.mac?
url "#{$config_provider.root_url}-darwin-amd64.tar.gz"
sha256 $config_provider.sierra_hash
elsif OS.linux?
if Hardware::CPU.intel?
url "#{$config_provider.root_url}-linux-amd64.tar.gz"
sha256 $config_provider.linux_hash
elsif Hardware::CPU.arm?
url "#{$config_provider.root_url}-linux-arm64.tar.gz"
sha256 $config_provider.linux_arm_hash
end
end
def install
bin.install $config_provider.bin
end
test do
assert_match "Usage", shell_output("#{bin}/simple-ec2 --help")
end
end