mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-18 22:54:00 +00:00
31 lines
424 B
Text
31 lines
424 B
Text
pkgname=awn
|
|
|
|
post_install() {
|
|
echo ""
|
|
echo "It is safe to ignore the SCHEMA warnings below"
|
|
echo ""
|
|
|
|
usr/sbin/gconfpkg --install ${pkgname}
|
|
update-desktop-database -q
|
|
}
|
|
|
|
post_upgrade() {
|
|
post_install $1
|
|
}
|
|
|
|
pre_remove() {
|
|
echo ""
|
|
echo "It is safe to ignore the SCHEMA warnings below"
|
|
echo ""
|
|
|
|
usr/sbin/gconfpkg --uninstall ${pkgname}
|
|
}
|
|
|
|
post_remove() {
|
|
update-desktop-database -q
|
|
}
|
|
|
|
op=$1
|
|
shift
|
|
|
|
$op $*
|