32 lines
1 KiB
Bash
32 lines
1 KiB
Bash
# Template file for 'docker'
|
|
pkgname=docker
|
|
version=1.10.3
|
|
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"
|
|
distfiles="https://github.com/$pkgname/$pkgname/archive/v$version.tar.gz"
|
|
checksum=6b72fafa4c068a95133f5c9fda9fb148c9412db7a932800689e259a1b1c7ef6d
|
|
|
|
# These are required at run-time.
|
|
depends="iptables xz git"
|
|
nostrip=yes
|
|
nocross=yes
|
|
only_for_archs="x86_64 x86_64-musl"
|
|
system_groups="docker"
|
|
|
|
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
|
|
}
|