mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-28 22:57:37 +00:00
13 lines
329 B
Text
13 lines
329 B
Text
# arg 1: the new package version
|
|
post_install() {
|
|
echo "See \"MythTV\" on the Archlinux Wiki for installation information - Extensive!!"
|
|
}
|
|
|
|
# arg 1: the old package version
|
|
post_remove() {
|
|
echo -e "NOTE: mysql database was not removed. To remove run:\nmysql -u root -e 'drop database mythconverg;'"
|
|
}
|
|
|
|
op=$1
|
|
shift
|
|
$op $*
|