mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-28 22:57:37 +00:00
25 lines
316 B
Text
25 lines
316 B
Text
|
# this is the scrollkeeper handling sample file
|
||
|
|
||
|
post_install() {
|
||
|
echo "update desktop mime database..."
|
||
|
update-desktop-database -q
|
||
|
}
|
||
|
|
||
|
post_upgrade() {
|
||
|
post_install $1
|
||
|
}
|
||
|
|
||
|
pre_remove() {
|
||
|
/bin/true
|
||
|
}
|
||
|
|
||
|
post_remove() {
|
||
|
echo "update desktop mime database..."
|
||
|
update-desktop-database -q
|
||
|
}
|
||
|
|
||
|
op=$1
|
||
|
shift
|
||
|
|
||
|
$op $*
|