mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-08 22:45:43 +00:00
19 lines
264 B
Text
19 lines
264 B
Text
|
post_install() {
|
||
|
cat << EOF
|
||
|
==>
|
||
|
==> To use py_pjsua (Python bindings for PJSUA),
|
||
|
==> install 'alsa-lib', 'e2fsprogs', and 'python'
|
||
|
==>
|
||
|
EOF
|
||
|
}
|
||
|
|
||
|
post_upgrade() {
|
||
|
post_install
|
||
|
}
|
||
|
|
||
|
op=$1
|
||
|
shift
|
||
|
[ "$(type -t "$op")" = "function" ] && $op "$@"
|
||
|
|
||
|
# vim:set ts=2 sw=2 et:
|