contrib/docker-bin/Pkgfile
James Mills 3f0e476779 Added docker-bin (NEW): Pack, ship and run any application as a lightweight container
--HG--
extra : rebase_source : ed3add82f8e6cabec783a96c325bab2468269a32
2014-02-12 01:24:26 +10:00

23 lines
640 B
Plaintext

# Description: Pack, ship and run any application as a lightweight container
# URL: http://www.docker.io/
# Maintainer: James Mills, prologic at shortcircuit dot net dot au
# Packager: Sébastien "Seblu" Luttringer
#
# Depends on: bridge-utils lxc sqlite3
name=docker-bin
version=0.8.0
release=2
source=(
https://get.docker.io/builds/Linux/x86_64/docker-$version
docker.rc
docker.conf
)
build() {
install -D -m 755 $SRC/docker-$version $PKG/usr/bin/docker
install -D -m 755 $SRC/docker.rc $PKG/etc/rc.d/docker
install -D -m 644 $SRC/docker.conf $PKG/etc/docker.conf
chown -R root:root $PKG
}