forked from ports/contrib
2cdc789a54
--HG-- extra : rebase_source : 9b694e4d7b8d0a91a102ab070e5dc1c15ac69823
23 lines
640 B
Plaintext
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.1
|
|
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
|
|
}
|