2010-06-23 17:34:46 +08:00
|
|
|
|
|
|
|
post_install() {
|
|
|
|
cat <<EOT
|
|
|
|
----------------------------------------------------------------------------
|
2010-07-01 04:24:50 +08:00
|
|
|
> Configuration: /etc/conf.d/splash
|
|
|
|
> WIKI page: http://wiki.archlinux.org/index.php/Fbsplash
|
2010-06-23 17:34:46 +08:00
|
|
|
----------------------------------------------------------------------------
|
|
|
|
EOT
|
|
|
|
}
|
|
|
|
|
2010-07-01 04:24:50 +08:00
|
|
|
## arg 1: the new package version
|
|
|
|
## arg 2: the old package version
|
2010-06-23 17:34:46 +08:00
|
|
|
post_upgrade() {
|
2010-07-01 04:24:50 +08:00
|
|
|
if [[ $( vercmp $2 1.2.7 ) -lt 0 ]]; then
|
|
|
|
post_install
|
|
|
|
fi
|
2010-06-23 17:34:46 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
# EOF
|