updated on Wed Jan 25 20:08:56 UTC 2012
[aur-mirror.git] / fbsplash-extras / INSTALL
blob20140f45eae1c883ff1a382451831565877892a1
1 #!/bin/bash
3 # arg 1: the new package version
4 pre_install() {
8 # arg 1: the new package version
9 post_install() {
10 cat <<EOT
11 -------------------------------------------------------------------------------
12 > If starting X from DAEMONS, set SPLASH_XSERVICE in /etc/conf.d/splash !
13 > Additional configuration: /etc/conf.d/splash-extras
14 > If SPLASH_DAEMON="early" in /etc/conf.d/splash, update your initcpio !
15 -------------------------------------------------------------------------------
16 EOT
19 # arg 1: the new package version
20 # arg 2: the old package version
21 pre_upgrade() {
25 # arg 1: the new package version
26 # arg 2: the old package version
27 post_upgrade() {
28 (( $( vercmp "$2" 3.0 ) >= 0 )) || post_install "$1"
31 # arg 1: the old package version
32 pre_remove() {
36 # arg 1: the old package version
37 post_remove() {
41 # EOF