summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorMoritz Bunkus2017-09-28 20:53:56 +0200
committerMoritz Bunkus2017-09-28 20:53:56 +0200
commit9755c67afd407242a6b2c9c1cf93d024dd09bdfb (patch)
tree2dc555ead3bdbb62260542f78f870fab5c954bda
parent8679ddffbc01c0164329501fd397ceb63899697a (diff)
downloadaur-9755c67afd407242a6b2c9c1cf93d024dd09bdfb.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 23384d0c391d..713099d9d285 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,9 +1,9 @@
# Generated by mksrcinfo v8
-# Thu May 19 06:54:47 UTC 2016
+# Thu Sep 28 18:53:56 UTC 2017
pkgbase = perl-algorithm-checkdigits
pkgdesc = Perl extension to generate and test check digits
pkgver = 1.3.2
- pkgrel = 1
+ pkgrel = 2
url = http://search.cpan.org/dist/Algorithm-CheckDigits/
arch = any
license = GPL
diff --git a/PKGBUILD b/PKGBUILD
index f8fbe00b796d..ec3252105be9 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -2,7 +2,7 @@
pkgname="perl-algorithm-checkdigits"
pkgver="1.3.2"
-pkgrel="1"
+pkgrel='2'
pkgdesc="Perl extension to generate and test check digits"
arch=('any')
url="http://search.cpan.org/dist/Algorithm-CheckDigits/"
@@ -35,7 +35,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: