# $Id$
# Maintainer: Sebastien "Seblu" Luttringer

# ALARM: Kevin Mihelich <kevin@archlinuxarm.org>
#  - ARM patches, adjustments

pkgname=docker
pkgver=1.0.0
pkgrel=1
epoch=1
pkgdesc='Pack, ship and run any application as a lightweight container'
arch=('x86_64')
url='http://www.docker.io/'
license=('Apache')
depends=('bridge-utils' 'iproute2' 'device-mapper' 'sqlite' 'systemd')
makedepends=('git' 'go' 'btrfs-progs')
optdepends=('btrfs-progs: btrfs backend support'
            'lxc: lxc backend support')
# don't strip binaries! A sha1 is used to check binary consistency.
options=('!strip')
install=$pkgname.install
source=("git+https://github.com/dotcloud/docker.git#tag=v$pkgver"
        '0001-ARM-as-allowed-architecture.patch'
        '0002-Fix-btrfs-detection-on-ARM.patch'
        '0003-setBridgeMacAddress-ARM-support.patch')
md5sums=('SKIP'
         'c003084f4cf0f754c868662a8bae95e8'
         '3ca24a8fe8567a153fad4f9ab31286ae'
         '1f74fb11f1b10868dbc55ddb6d437125')

prepare() {
  cd "docker"
  patch -p1 -i ../0001-ARM-as-allowed-architecture.patch
  patch -p1 -i ../0002-Fix-btrfs-detection-on-ARM.patch
  find . -name '*.go' | xargs sed --in-place= -e 's/\/\/ +build amd64/\/\/ +build arm/'
  find . -name '*.go' | xargs sed --in-place= -e 's/\/\/ +build !linux !amd64/\/\/ +build !linux !arm/'
  find . -name '*.go' | xargs sed --in-place= -e 's/\/\/ +build linux,amd64/\/\/ +build linux,arm/'
  # This patch is applicable after the seds.
  patch -p1 -i ../0003-setBridgeMacAddress-ARM-support.patch
}

build() {
  cd docker
  export AUTO_GOPATH=1
  ./hack/make.sh dynbinary
}

#check() {
#  cd "$_magic/docker"
#  # Will be added upstream soon
#  ./hack/make.sh dyntest
#}

package() {
  cd docker
  install -Dm755 "bundles/$pkgver/dynbinary/docker-$pkgver" "$pkgdir/usr/bin/docker"
  install -Dm755 "bundles/$pkgver/dynbinary/dockerinit-$pkgver" "$pkgdir/usr/lib/docker/dockerinit"
  # completion
  install -Dm644 "contrib/completion/bash/docker" "$pkgdir/usr/share/bash-completion/completions/docker"
  install -Dm644 "contrib/completion/zsh/_docker" "$pkgdir/usr/share/zsh/site-functions/_docker"
  # systemd
  install -Dm644 "contrib/init/systemd/docker.service" "$pkgdir/usr/lib/systemd/system/docker.service"
}