23 lines
		
	
	
		
			677 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
			
		
		
	
	
			23 lines
		
	
	
		
			677 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
| # Template file for 'docker-machine'
 | |
| pkgname=docker-machine
 | |
| version=0.12.0
 | |
| revision=1
 | |
| wrksrc="machine-${version}"
 | |
| build_style=go
 | |
| go_import_path="github.com/docker/machine"
 | |
| go_package="${go_import_path}/cmd"
 | |
| short_desc="Docker Machine management for a container-centric world"
 | |
| maintainer="Sergi Alvarez <pancake@nopcode.org>"
 | |
| license="Apache-2.0"
 | |
| homepage="https://github.com/docker/machine/"
 | |
| distfiles="https://github.com/docker/machine/archive/v${version}.tar.gz"
 | |
| checksum=2238dbb8580ca2399c64fa6cda0089a9dde6142d4dcbb8d750aedbeee042fbfe
 | |
| 
 | |
| do_install() {
 | |
| 	vlicense LICENSE
 | |
| 	find "${GOPATH}/bin" -type f -executable | while read line
 | |
| 	do
 | |
| 		vbin "${line}" docker-machine
 | |
| 	done
 | |
| }
 | 
