mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-18 22:54:00 +00:00
20 lines
342 B
Text
20 lines
342 B
Text
# arg 1: the new package version
|
|
post_install() {
|
|
echo "cdargs: helper scripts are in /usr/share/cdargs/"
|
|
}
|
|
|
|
# arg 1: the new package version
|
|
# arg 2: the old package version
|
|
post_upgrade() {
|
|
echo "cdargs: helper scripts are in /usr/share/cdargs/"
|
|
}
|
|
|
|
# arg 1: the old package version
|
|
pre_remove() {
|
|
/bin/true
|
|
}
|
|
|
|
op=$1
|
|
shift
|
|
|
|
$op $*
|