summaryrefslogtreecommitdiff
path: root/core/sqlite3/PKGBUILD
diff options
context:
space:
mode:
Diffstat (limited to 'core/sqlite3/PKGBUILD')
-rw-r--r--core/sqlite3/PKGBUILD16
1 files changed, 10 insertions, 6 deletions
diff --git a/core/sqlite3/PKGBUILD b/core/sqlite3/PKGBUILD
index 635473d81..390c561c1 100644
--- a/core/sqlite3/PKGBUILD
+++ b/core/sqlite3/PKGBUILD
@@ -1,4 +1,4 @@
-# $Id: PKGBUILD 138536 2011-09-27 04:34:27Z andyrtr $
+# $Id: PKGBUILD 138770 2011-09-28 04:21:04Z andyrtr $
# Maintainer: Andreas Radke <andyrtr@archlinux.org>
# Contributor: Tom Newsom <Jeepster@gmx.co.uk>
@@ -8,7 +8,7 @@ _amalgamationver=3070800
_amalgamationver2=${_amalgamationver/00/}
_docver=${_amalgamationver} #3070700
pkgver=${_amalgamationver2//0/.}
-pkgrel=1
+pkgrel=2
pkgdesc="A C library that implements an SQL database engine"
arch=('i686' 'x86_64')
license=('custom')
@@ -77,10 +77,14 @@ package_sqlite3-doc() {
cp -R * ${pkgdir}/usr/share/doc/${pkgbase}/
# fix permissions and remove obsolete files; https://bugs.archlinux.org/task/24605
- find ${pkgdir} -perm 755 -exec ls -lha {} \;
- find ${pkgdir} -perm 755 -exec chmod 644 {} \;
- find ${pkgdir} -name '*~' -exec ls -lha {} \;
+ find ${pkgdir} -type f -perm 755 -exec ls -lha {} \;
+ find ${pkgdir} -type f -perm 755 -exec chmod 644 {} \;
+
+ find ${pkgdir} -type f -name '*~' -exec ls -lha {} \;
+ find ${pkgdir} -type d -name '*~' -exec ls -lha {} \;
find ${pkgdir} -name '*~' -exec rm -f {} \;
- find ${pkgdir} -name '.~*' -exec ls -lha {} \;
+
+ find ${pkgdir} -type f -name '.~*' -exec ls -lha {} \; # /build/pkg/sqlite3-doc/usr/share/doc/sqlite3/images/fileformat/.~lock.indexpage.odg#
+ find ${pkgdir} -type d -name '.~*' -exec ls -lha {} \;
find ${pkgdir} -name '.~*' -exec rm -f {} \;
}