void-packages/srcpkgs/docker/template
2018-07-19 07:23:02 +02:00

47 lines
1.6 KiB
Bash

# Template file for 'docker'
pkgname=docker
version=18.06.0
revision=1
_subversion='-ce'
_version="$version$_subversion"
wrksrc="$pkgname$_subversion-$_version"
build_wrksrc=components/engine
hostmakedepends="git go pkg-config curl cmake"
makedepends="libbtrfs-devel sqlite-devel device-mapper-devel libseccomp-devel libapparmor-devel"
short_desc="Pack, ship and run any application as a lightweight container"
maintainer="Andrea Brancaleoni <abc@pompel.me>"
license="Apache-2.0"
homepage="http://www.docker.io"
distfiles="https://github.com/docker/docker-ce/archive/v$_version.tar.gz"
checksum=18754ecb38d7c210fb2b96ee618dc2bdf94e66cd501d4eef0c685903a83e8501
# These are required at run-time.
depends="iptables xz git"
nopie=yes
nostrip=yes
nocross=yes
only_for_archs="x86_64 x86_64-musl"
system_groups="docker"
_docker_components="runc containerd tini proxy dockercli"
do_build() {
AUTO_GOPATH=1 DOCKER_BUILDTAGS='seccomp apparmor' DOCKER_GITCOMMIT=v$_version \
hack/make.sh dynbinary
}
pre_build() {
vmkdir usr/bin
sed -i "s|/usr/local|$DESTDIR/usr|g" hack/dockerfile/install/install.sh
for COMPONENT in $_docker_components; do
AUTO_GOPATH=1 LDFLAGS='' DOCKER_BUILDTAGS='seccomp apparmor' DOCKER_GITCOMMIT=v$_version \
hack/dockerfile/install/install.sh $COMPONENT
done
}
do_install() {
vbin ${wrksrc}/components/engine/bundles/dynbinary-daemon/dockerd dockerd
vinstall ${wrksrc}/components/cli/contrib/completion/bash/docker 644 usr/share/bash-completion/completions
vinstall ${wrksrc}/components/cli/contrib/completion/zsh/_docker 644 usr/share/zsh/site-functions
vsv docker
}