mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-18 22:54:00 +00:00
22 lines
290 B
Text
22 lines
290 B
Text
pkgname=gdesklets
|
|
|
|
post_install() {
|
|
usr/sbin/gconfpkg --install ${pkgname}
|
|
update-desktop-database -q
|
|
}
|
|
|
|
pre_upgrade() {
|
|
pre_remove $1
|
|
}
|
|
|
|
post_upgrade() {
|
|
post_install $1
|
|
}
|
|
|
|
pre_remove() {
|
|
usr/sbin/gconfpkg --uninstall ${pkgname}
|
|
}
|
|
|
|
post_remove() {
|
|
update-desktop-database -q
|
|
}
|