summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorMoritz Bunkus2017-09-28 21:01:15 +0200
committerMoritz Bunkus2017-09-28 21:01:15 +0200
commitb055832104a87d1720b7ac0370bffb84aff93e3b (patch)
tree5dc031225f3944778d6a30d8e9116bc881d7b13d
parentc1556937e577d27fba2d00cf6a48169dbb9bd9af (diff)
downloadaur-b055832104a87d1720b7ac0370bffb84aff93e3b.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 1522aab2c517..a192abd8a2bf 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,9 +1,9 @@
# Generated by mksrcinfo v8
-# Thu Sep 28 18:00:50 UTC 2017
+# Thu Sep 28 19:01:15 UTC 2017
pkgbase = perl-net-sip
pkgdesc = SIP (Voice Over IP, RFC3261) packet handling
pkgver = 0.810
- pkgrel = 1
+ pkgrel = 2
url = http://search.cpan.org/dist/Net-SIP
arch = any
license = PerlArtistic
diff --git a/PKGBUILD b/PKGBUILD
index 9f4254f60305..61e877265fe0 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -4,7 +4,7 @@
pkgname='perl-net-sip'
pkgver='0.810'
-pkgrel='1'
+pkgrel='2'
pkgdesc="SIP (Voice Over IP, RFC3261) packet handling"
arch=('any')
license=('PerlArtistic')
@@ -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: