void-packages/srcpkgs/docker/template
2015-09-12 08:35:05 +02:00

36 lines
1.1 KiB
Bash

# Template file for 'docker'
pkgname=docker
version=1.8.2
revision=1
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"
broken="http://build.voidlinux.eu/builders/x86_64_builder/builds/16694/steps/shell_3/logs/stdio"
# These are required at run-time.
depends="iptables xz git"
nostrip=yes
nocross=yes
only_for_archs="x86_64 x86_64-musl"
distfiles="https://github.com/$pkgname/$pkgname/archive/v$version.tar.gz"
checksum=457569ca8edd70293132789bfe51636f86cd8a46a60c6d02d5ee8600cf79f74b
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
}