mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-01-24 02:22:13 +08:00
17 lines
286 B
Plaintext
17 lines
286 B
Plaintext
# arg 1: the new package version
|
|
post_install() {
|
|
cat << EOF
|
|
Note:
|
|
==> for using this lib in your projects include wiiuse.h and link against libwiiuse.so
|
|
EOF
|
|
}
|
|
|
|
# arg 1: the new package version
|
|
# arg 2: the old package version
|
|
post_upgrade() {
|
|
post_install $1
|
|
}
|
|
|
|
op=$1
|
|
shift
|
|
$op $* |