summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorMoritz Bunkus2017-09-28 20:56:29 +0200
committerMoritz Bunkus2017-09-28 20:56:29 +0200
commit90c23237f2ad731419abf3304ecddec0ac6d5eb4 (patch)
tree1e21008ed0f42e6799c7096273578bd8b0b98d35
parentef6c4588d7f0a8ef858e6ec7bc02ccfd5ce8d56d (diff)
downloadaur-90c23237f2ad731419abf3304ecddec0ac6d5eb4.tar.gz
fix removal of .packlist and with that of empty directories
-rw-r--r--.SRCINFO4
-rw-r--r--PKGBUILD4
2 files changed, 4 insertions, 4 deletions
diff --git a/.SRCINFO b/.SRCINFO
index 7f4d70b5076c..9c0737afbf26 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,9 +1,9 @@
# Generated by mksrcinfo v8
-# Thu Sep 28 17:59:09 UTC 2017
+# Thu Sep 28 18:56:29 UTC 2017
pkgbase = perl-datetime-format-pg
pkgdesc = 'Parse and format PostgreSQL dates and times'
pkgver = 0.16013
- pkgrel = 1
+ pkgrel = 2
url = http://search.cpan.org/~dmaki/DateTime-Format-Pg
arch = i686
arch = x86_64
diff --git a/PKGBUILD b/PKGBUILD
index e4fe25211bb3..0c27fee252f8 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -2,7 +2,7 @@
pkgname=perl-datetime-format-pg
pkgver="0.16013"
-pkgrel="1"
+pkgrel='2'
pkgdesc="'Parse and format PostgreSQL dates and times'"
arch=(i686 x86_64)
license=('perl')
@@ -37,5 +37,5 @@ check() {
package() {
prepare_environment
./Build install
- find "$pkgdir" -name .packlist -o -name perllocal.pod -delete
+ find "$pkgdir" "(" -name .packlist -o -name perllocal.pod ")" -delete
}