mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2025-03-19 00:21:40 +00:00
community/docker to 1.10.3-1
This commit is contained in:
parent
b398230042
commit
cac846e0d9
1 changed files with 9 additions and 3 deletions
|
@ -4,7 +4,7 @@
|
||||||
# ALARM: Kevin Mihelich <kevin@archlinuxarm.org>
|
# ALARM: Kevin Mihelich <kevin@archlinuxarm.org>
|
||||||
|
|
||||||
pkgname=docker
|
pkgname=docker
|
||||||
pkgver=1.10.2
|
pkgver=1.10.3
|
||||||
pkgrel=1
|
pkgrel=1
|
||||||
epoch=1
|
epoch=1
|
||||||
pkgdesc='Pack, ship and run any application as a lightweight container'
|
pkgdesc='Pack, ship and run any application as a lightweight container'
|
||||||
|
@ -24,8 +24,14 @@ md5sums=('SKIP'
|
||||||
'8cf9900ebada61f352a03465a088da34')
|
'8cf9900ebada61f352a03465a088da34')
|
||||||
|
|
||||||
prepare() {
|
prepare() {
|
||||||
for _f in "${source[@]}"; do
|
cd docker
|
||||||
[[ "$_f" =~ \.patch$ ]] && { msg2 "$_f"; patch -p1 -d docker < "$_f"; }
|
# apply patch from the source array (should be a pacman feature)
|
||||||
|
local filename
|
||||||
|
for filename in "${source[@]}"; do
|
||||||
|
if [[ "$filename" =~ \.patch$ ]]; then
|
||||||
|
msg2 "Applying patch $filename"
|
||||||
|
patch -p1 -i "$srcdir/$filename"
|
||||||
|
fi
|
||||||
done
|
done
|
||||||
:
|
:
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue