summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorMoritz Bunkus2017-09-28 21:02:52 +0200
committerMoritz Bunkus2017-09-28 21:02:52 +0200
commit881be32981fecba7d2f7d0a6ba4923340118d6b0 (patch)
tree45b3bba1eb47e271f815f9bf8d17f13de983054e
parentad2c5ea4539fdcacdf68e0ad1f2c4e7563949e4f (diff)
downloadaur-881be32981fecba7d2f7d0a6ba4923340118d6b0.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 17ecd28f06c5..fb6763387ac0 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,7 +1,9 @@
+# Generated by mksrcinfo v8
+# Thu Sep 28 19:02:52 UTC 2017
pkgbase = perl-time-period
pkgdesc = A Perl module to deal with time periods
pkgver = 1.25
- pkgrel = 1
+ pkgrel = 2
url = http://search.cpan.org/dist/Time-Period/
arch = any
license = PerlArtistic
diff --git a/PKGBUILD b/PKGBUILD
index 3d1a017ad4e7..3fd643f29f09 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -2,7 +2,7 @@
pkgname='perl-time-period'
pkgver='1.25'
-pkgrel='1'
+pkgrel='2'
pkgdesc="A Perl module to deal with time periods"
arch=('any')
license=('PerlArtistic' 'GPL')
@@ -36,7 +36,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: