diff options
author | root <root@rshg054.dnsready.net> | 2012-07-19 00:01:52 +0000 |
---|---|---|
committer | root <root@rshg054.dnsready.net> | 2012-07-19 00:01:52 +0000 |
commit | 6b87f8519dc037f4fd4c19d8f36b7d7565559bd3 (patch) | |
tree | 4c1b86f91ce9c742867b6eecd4857b20919cd713 /community/pkgfile | |
parent | 63d179775e063452db6358e15b9847e7fc6c84b6 (diff) |
Thu Jul 19 00:01:52 UTC 2012
Diffstat (limited to 'community/pkgfile')
-rw-r--r-- | community/pkgfile/PKGBUILD | 4 | ||||
-rw-r--r-- | community/pkgfile/pkgfile.install | 9 |
2 files changed, 10 insertions, 3 deletions
diff --git a/community/pkgfile/PKGBUILD b/community/pkgfile/PKGBUILD index 029b2347e..7b79de3c0 100644 --- a/community/pkgfile/PKGBUILD +++ b/community/pkgfile/PKGBUILD @@ -1,9 +1,9 @@ -# $Id: PKGBUILD 73908 2012-07-17 01:41:42Z dreisner $ +# $Id: PKGBUILD 73970 2012-07-17 20:42:54Z dreisner $ # Maintainer: Dave Reisner <dreisner@archlinux.org> pkgname=pkgfile pkgver=1 -pkgrel=1 +pkgrel=2 pkgdesc="a pacman .files metadata explorer" arch=('i686' 'x86_64') url="http://github.com/falconindy/pkgfile" diff --git a/community/pkgfile/pkgfile.install b/community/pkgfile/pkgfile.install index 7653630b0..bf0c9cfa3 100644 --- a/community/pkgfile/pkgfile.install +++ b/community/pkgfile/pkgfile.install @@ -1,5 +1,12 @@ #!/bin/bash post_install() { - printf "==> Run 'pkgfile ---update' to initialize the database\n" + printf "==> Run 'pkgfile --update' to initialize the database\n" +} + +post_remove() { + # the cache dir might not be removed, notify the user + if [ -d var/cache/pkgfile ]; then + printf "==> /var/cache/pkgfile has not been removed\n" + fi } |