summaryrefslogtreecommitdiff
path: root/community/libnids/PKGBUILD
diff options
context:
space:
mode:
authorErich Eckner <git@eckner.net>2020-03-05 10:12:42 +0100
committerErich Eckner <git@eckner.net>2020-03-05 10:12:42 +0100
commit2daf5647b6961ff6281d5c89b50783e5258a6b4b (patch)
tree0ff7915683c1d5e0095605912940f94cb65c1643 /community/libnids/PKGBUILD
parent3271f6ab8a92141c0e6e696b327198795f611006 (diff)
downloadpackages-2daf5647b6961ff6281d5c89b50783e5258a6b4b.tar.xz
do not overwrite prepare if it already existed
Diffstat (limited to 'community/libnids/PKGBUILD')
-rw-r--r--community/libnids/PKGBUILD14
1 files changed, 10 insertions, 4 deletions
diff --git a/community/libnids/PKGBUILD b/community/libnids/PKGBUILD
index 13578e05..7a510454 100644
--- a/community/libnids/PKGBUILD
+++ b/community/libnids/PKGBUILD
@@ -5,7 +5,13 @@
source+=('libnids-1.24-inline.patch')
sha256sums+=('3aea2351877c2a789d753ac66f1323a3d575dead9fb04c559e221dbebdfc7e3e')
-prepare() {
- cd $pkgname-$pkgver
- patch -Np1 -i "$srcdir/libnids-1.24-inline.patch"
-}
+eval "$(
+ {
+ declare -f prepare || \
+ printf 'prepare() {\n}\n'
+ } \
+ | sed '
+ $i cd "$srcdir/$pkgname-$pkgver" \
+ patch -Np1 -i "$srcdir/libnids-1.24-inline.patch"
+ '
+)"