30 lines
1,002 B
Text
30 lines
1,002 B
Text
# Template file for 'docker'
|
|
pkgname=docker
|
|
version=0.9.0
|
|
revision=1
|
|
hostmakedepends="go>=1.2"
|
|
makedepends="git iptables xz libbtrfs-devel sqlite-devel device-mapper-devel"
|
|
short_desc="Easily create lightweight, portable, self-sufficient containers from any application"
|
|
maintainer="Juan RP <xtraeme@gmail.com>"
|
|
license="Apache-2.0"
|
|
homepage="http://www.docker.io"
|
|
|
|
# These are required at run-time.
|
|
depends="iptables xz git"
|
|
|
|
do_fetch() {
|
|
git clone -b v${version} git://github.com/dotcloud/docker ${pkgname}-${version}
|
|
}
|
|
|
|
do_build() {
|
|
export AUTO_GOPATH=1
|
|
./hack/make.sh dynbinary
|
|
}
|
|
|
|
do_install() {
|
|
vinstall bundles/${version}/dynbinary/docker-${version} 755 usr/bin 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
|
|
vinstall contrib/init/systemd/docker.service 644 usr/lib/systemd/system
|
|
}
|