mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2025-01-07 23:24:05 +00:00
29 lines
294 B
Text
29 lines
294 B
Text
|
pkgname=gedit-plugins
|
||
|
|
||
|
post_install() {
|
||
|
usr/sbin/gconfpkg --install ${pkgname}
|
||
|
}
|
||
|
|
||
|
pre_upgrade() {
|
||
|
pre_remove $1
|
||
|
}
|
||
|
|
||
|
post_upgrade() {
|
||
|
post_install $1
|
||
|
}
|
||
|
|
||
|
pre_remove() {
|
||
|
usr/sbin/gconfpkg --uninstall ${pkgname}
|
||
|
}
|
||
|
|
||
|
post_remove() {
|
||
|
/bin/true
|
||
|
}
|
||
|
|
||
|
op=$1
|
||
|
shift
|
||
|
|
||
|
$op $*
|
||
|
|
||
|
# vim:set ts=2 sw=2 et:
|