diff options
Diffstat (limited to 'testing/sqlite3/PKGBUILD')
-rw-r--r-- | testing/sqlite3/PKGBUILD | 16 |
1 files changed, 10 insertions, 6 deletions
diff --git a/testing/sqlite3/PKGBUILD b/testing/sqlite3/PKGBUILD index 10ab385c4..cce87e7ef 100644 --- a/testing/sqlite3/PKGBUILD +++ b/testing/sqlite3/PKGBUILD @@ -1,4 +1,4 @@ -# $Id: PKGBUILD 138517 2011-09-26 19:21:09Z andyrtr $ +# $Id: PKGBUILD 138721 2011-09-27 17:48:43Z 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 {} \; } |