mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2025-01-07 23:24:05 +00:00
23 lines
231 B
Text
23 lines
231 B
Text
|
pkgname=bakery
|
||
|
|
||
|
post_install() {
|
||
|
usr/sbin/gconfpkg --install ${pkgname}
|
||
|
}
|
||
|
|
||
|
pre_upgrade() {
|
||
|
pre_remove $1
|
||
|
}
|
||
|
|
||
|
post_upgrade() {
|
||
|
post_install $1
|
||
|
}
|
||
|
|
||
|
pre_remove() {
|
||
|
usr/sbin/gconfpkg --uninstall ${pkgname}
|
||
|
}
|
||
|
|
||
|
op=$1
|
||
|
shift
|
||
|
|
||
|
$op $*
|