summaryrefslogtreecommitdiff
path: root/community/pkgfile
diff options
context:
space:
mode:
Diffstat (limited to 'community/pkgfile')
-rw-r--r--community/pkgfile/PKGBUILD4
-rw-r--r--community/pkgfile/pkgfile.install9
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
}