mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-08 22:45:43 +00:00
18 lines
292 B
Text
18 lines
292 B
Text
|
post_install() {
|
||
|
cat << EOF
|
||
|
>>> To make TiMidity++ use the Freepats patches,
|
||
|
>>> copy /etc/timidity++/timidity-freepats.cfg
|
||
|
>>> to /etc/timidity++/timidity.cfg
|
||
|
EOF
|
||
|
}
|
||
|
|
||
|
post_upgrade() {
|
||
|
post_install $1
|
||
|
}
|
||
|
|
||
|
op=$1
|
||
|
shift
|
||
|
[ "$(type -t "$op")" = "function" ] && $op "$@"
|
||
|
|
||
|
# vim:set ts=2 sw=2 et:
|