void-packages/srcpkgs/docker/template
2015-07-27 00:34:29 +02:00

32 lines
1,021 B
Bash

# Template file for 'docker'
pkgname=docker
version=1.7.1
revision=2
hostmakedepends="git go"
makedepends="libbtrfs-devel sqlite-devel device-mapper-devel"
short_desc="Pack, ship and run any application as a lightweight container"
maintainer="Juan RP <xtraeme@voidlinux.eu>"
license="Apache-2.0"
homepage="http://www.docker.io"
system_groups="docker"
# These are required at run-time.
depends="iptables xz git"
nostrip=yes
nocross=yes
distfiles="https://github.com/$pkgname/$pkgname/archive/v$version.tar.gz"
checksum=9cd26415d68a88d3cf576e7e78c2fe97f42af795404f552728acc5b41dccf4ef
do_build() {
export AUTO_GOPATH=1
export DOCKER_GITCOMMIT=v$version
./hack/make.sh dynbinary
}
do_install() {
vbin bundles/${version}/dynbinary/docker-${version} docker
vinstall bundles/${version}/dynbinary/dockerinit-${version} 755 usr/lib/docker dockerinit
vinstall contrib/completion/bash/docker 644 usr/share/bash-completion/completions
vinstall contrib/completion/zsh/_docker 644 usr/share/zsh/site-functions
vsv docker
}