mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-28 22:57:37 +00:00
19 lines
444 B
Text
19 lines
444 B
Text
|
# arg 1: the new package version
|
||
|
post_install() {
|
||
|
cat << EOF
|
||
|
Note:
|
||
|
==> If you experience sound problems try setting your SDL_AUDIODRIVER environment variable to "dma"
|
||
|
==> eg. export SDL_AUDIODRIVER="dma" ; wesnoth
|
||
|
==> If "dma" doesn't work,other options are: dsp,alsa,artsc,esd,nas try to find the right output.
|
||
|
EOF
|
||
|
}
|
||
|
|
||
|
# arg 1: the new package version
|
||
|
# arg 2: the old package version
|
||
|
post_upgrade() {
|
||
|
post_install $1
|
||
|
}
|
||
|
|
||
|
op=$1
|
||
|
shift
|
||
|
$op $*
|