mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-28 22:57:37 +00:00
23 lines
273 B
Text
23 lines
273 B
Text
|
post_install() {
|
||
|
cat << EOF
|
||
|
|
||
|
==> libvisual-plugins has been built with support for "esd" and
|
||
|
==> "jack-audio-connection-kit" input.
|
||
|
==> If you want to use them, install them.
|
||
|
|
||
|
EOF
|
||
|
}
|
||
|
|
||
|
post_upgrade() {
|
||
|
post_install $1
|
||
|
}
|
||
|
|
||
|
pre_remove() {
|
||
|
/bin/true
|
||
|
}
|
||
|
|
||
|
op=$1
|
||
|
shift
|
||
|
|
||
|
$op $*
|