mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-08 22:45:43 +00:00
22 lines
562 B
Text
22 lines
562 B
Text
# arg 1: the new package version
|
|
post_install() {
|
|
echo "You need to place your config.yml in /opt/flexget/ see dir for examples."
|
|
echo "Configuration details can be found at http://flexget.com/wiki/Configuration."
|
|
}
|
|
|
|
# arg 1: the new package version
|
|
# arg 2: the old package version
|
|
post_upgrade() {
|
|
echo "You need to place your config.yml in /opt/flexget/ see dir for examples."
|
|
echo "Configuration details can be found at http://flexget.com/wiki/Configuration."
|
|
}
|
|
|
|
# arg 1: the old package version
|
|
pre_remove() {
|
|
/bin/true
|
|
}
|
|
|
|
op=$1
|
|
shift
|
|
|
|
$op $*
|