mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-01-24 10:32:13 +08:00
33 lines
971 B
Plaintext
33 lines
971 B
Plaintext
post_install() {
|
|
echo " "
|
|
echo " KDE Software Compilation 4.12.95"
|
|
echo " Packaged by the Chakra Project"
|
|
echo " "
|
|
echo " Installation prefix: /usr"
|
|
echo " Configuration directory: ~/.kde4"
|
|
echo " Update configurations: /etc/chakra/updates.conf"
|
|
echo " Chakra patches: /usr/share/chakra/patches"
|
|
echo " "
|
|
echo " Website: http://chakraos.org"
|
|
echo " News: http://chakros.org/news/"
|
|
echo " Wiki: http://chakros.org/wiki/"
|
|
echo " Forum: http://chakros.org/forum/"
|
|
echo " Bugtracker: http://chakros.org/bugtracker/"
|
|
echo " Packages: http://chakros.org/packages/"
|
|
echo " CCR: http://chakros.org/ccr/"
|
|
echo " Changelogs: http://gitorious.org/chakra-packages"
|
|
echo " "
|
|
}
|
|
|
|
post_upgrade() {
|
|
post_install $1
|
|
}
|
|
|
|
post_remove() {
|
|
/bin/true
|
|
}
|
|
|
|
op=$1
|
|
shift
|
|
$op $*
|