mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-12-08 23:03:46 +00:00
24 lines
303 B
Text
24 lines
303 B
Text
pkgname=gnome-commander
|
|
|
|
post_install() {
|
|
gconfpkg --install "$pkgname"
|
|
update-desktop-database -q
|
|
}
|
|
|
|
pre_upgrade() {
|
|
pre_remove $1
|
|
}
|
|
|
|
post_upgrade() {
|
|
post_install $1
|
|
}
|
|
|
|
pre_remove() {
|
|
gconfpkg --uninstall "$pkgname"
|
|
}
|
|
|
|
post_remove() {
|
|
update-desktop-database -q
|
|
}
|
|
|
|
# vim:set ts=2 sw=2 et:
|