mirror of
https://github.com/arcan1s/pkgbuild.git
synced 2025-04-24 15:37:18 +00:00
24 lines
268 B
Plaintext
24 lines
268 B
Plaintext
post_install()
|
|
{
|
|
cat << EOF
|
|
Update plasmoids...
|
|
EOF
|
|
kbuildsycoca4 > /dev/null 2>&1
|
|
}
|
|
|
|
post_upgrade()
|
|
{
|
|
cat << EOF
|
|
Update plasmoids...
|
|
EOF
|
|
kbuildsycoca4 > /dev/null 2>&1
|
|
}
|
|
|
|
post_remove()
|
|
{
|
|
cat << EOF
|
|
Update plasmoids...
|
|
EOF
|
|
kbuildsycoca4 > /dev/null 2>&1
|
|
}
|