mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-08 22:45:43 +00:00
community/docker to 1.6.2-2
This commit is contained in:
parent
0267271d0a
commit
f01c5264d8
1 changed files with 7 additions and 2 deletions
|
@ -3,14 +3,14 @@
|
|||
|
||||
pkgname=docker
|
||||
pkgver=1.6.2
|
||||
pkgrel=1
|
||||
pkgrel=2
|
||||
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')
|
||||
makedepends=('git' 'go' 'btrfs-progs' 'go-md2man')
|
||||
optdepends=('btrfs-progs: btrfs backend support'
|
||||
'lxc: lxc backend support')
|
||||
# don't strip binaries! A sha1 is used to check binary consistency.
|
||||
|
@ -25,6 +25,8 @@ build() {
|
|||
cd docker
|
||||
export AUTO_GOPATH=1
|
||||
./hack/make.sh dynbinary
|
||||
# man pages
|
||||
docs/man/md2man-all.sh
|
||||
}
|
||||
|
||||
#check() {
|
||||
|
@ -47,6 +49,9 @@ package() {
|
|||
# vim syntax
|
||||
install -Dm644 'contrib/syntax/vim/syntax/dockerfile.vim' "$pkgdir/usr/share/vim/vimfiles/syntax/dockerfile.vim"
|
||||
install -Dm644 'contrib/syntax/vim/ftdetect/dockerfile.vim' "$pkgdir/usr/share/vim/vimfiles/ftdetect/dockerfile.vim"
|
||||
# man
|
||||
install -dm755 "$pkgdir/usr/share/man"
|
||||
mv docs/man/man* "$pkgdir/usr/share/man"
|
||||
}
|
||||
|
||||
# vim:set ts=2 sw=2 et:
|
||||
|
|
Loading…
Reference in a new issue