summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorMoritz Bunkus2017-09-28 21:00:06 +0200
committerMoritz Bunkus2017-09-28 21:00:06 +0200
commit340d3f04bd2e4111023f37b041879bdfcb5aa2a3 (patch)
treeae31cfd6dddd08c352e4dcbabdd24226aeede5dc
parent1710d63384618805dcd239e7a368838cf66ba242 (diff)
downloadaur-340d3f04bd2e4111023f37b041879bdfcb5aa2a3.tar.gz
fix removal of .packlist and with that of empty directories
-rw-r--r--.SRCINFO4
-rw-r--r--PKGBUILD4
2 files changed, 5 insertions, 3 deletions
diff --git a/.SRCINFO b/.SRCINFO
index efe62841a54d..cc0a700cb18c 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,7 +1,9 @@
+# Generated by mksrcinfo v8
+# Thu Sep 28 19:00:06 UTC 2017
pkgbase = perl-lwp-useragent-cached
pkgdesc = LWP::UserAgent with simple caching mechanism
pkgver = 0.06
- pkgrel = 1
+ pkgrel = 2
url = https://metacpan.org/release/LWP-UserAgent-Cached
arch = any
license = PerlArtistic
diff --git a/PKGBUILD b/PKGBUILD
index 1c1f52df6b37..2fa25562276a 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -1,7 +1,7 @@
# Maintainer: Moritz Bunkus <moritz@bunkus.org>
pkgname='perl-lwp-useragent-cached'
pkgver='0.06'
-pkgrel='1'
+pkgrel='2'
pkgdesc="LWP::UserAgent with simple caching mechanism"
arch=('any')
license=('PerlArtistic' 'GPL')
@@ -37,7 +37,7 @@ check() {
package() {
prepare_environment
make install
- find "$pkgdir" -name .packlist -o -name perllocal.pod -delete
+ find "$pkgdir" "(" -name .packlist -o -name perllocal.pod ")" -delete
}
# Local Variables: