mirror of
https://github.com/donl/homebrew-cask-versions.git
synced 2026-07-16 22:06:43 -06:00
20 lines
658 B
Ruby
20 lines
658 B
Ruby
cask :v1 => 'docker-machine' do
|
|
version 'v0.1.0'
|
|
sha256 '9915d88f779915aa7f1d7ba2537433b15665030574d61b9e348dd1f7397606c4'
|
|
|
|
# github.com is the official download host per the vendor homepage
|
|
url "https://github.com/docker/machine/releases/download/#{version}/docker-machine_darwin-amd64"
|
|
name 'Docker Machine'
|
|
homepage 'https://docs.docker.com/machine'
|
|
license :apache
|
|
|
|
container :type => :naked
|
|
binary 'docker-machine_darwin-amd64', :target => 'docker-machine'
|
|
|
|
postflight do
|
|
system '/bin/chmod', '--', '0755', "#{staged_path}/docker-machine_darwin-amd64"
|
|
end
|
|
|
|
depends_on :cask => 'boot2docker'
|
|
depends_on :arch => :x86_64
|
|
end
|