summaryrefslogtreecommitdiff
path: root/docker-bin/Pkgfile
blob: f7614fef00505b019b7720718d7d2b800eb28ef1 (plain)
    1 # Description:  Pack, ship and run any application as a lightweight container
    2 # URL:          http://www.docker.io/
    3 # Maintainer:   James Mills, prologic at shortcircuit dot net dot au
    4 #
    5 # Depends on:   sqlite3 cgroupfs-mount
    6 
    7 name=docker-bin
    8 version=0.11.1
    9 release=2
   10 source=(
   11     https://get.docker.io/builds/Linux/x86_64/docker-$version
   12     https://raw.githubusercontent.com/dotcloud/docker/master/contrib/check-config.sh
   13     docker.rc
   14     docker.conf
   15 )
   16 
   17 build() {
   18     install -D -m 755 $SRC/check-config.sh $PKG/usr/share/docker/check-config.sh
   19     install -D -m 755 $SRC/docker-$version $PKG/usr/bin/docker
   20     install -D -m 755 $SRC/docker.rc $PKG/etc/rc.d/docker
   21     install -D -m 644 $SRC/docker.conf $PKG/etc/docker.conf
   22 
   23     chown -R root:root $PKG
   24 }

Generated by cgit