mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-01-25 02:52:13 +08:00
36 lines
860 B
Plaintext
36 lines
860 B
Plaintext
#
|
|
# install functions
|
|
#
|
|
post_install() {
|
|
echo " "
|
|
echo " > KDE Software Compilation 4.10 RC 2 (4.9.97)"
|
|
echo " > packaged by The Chakra Project"
|
|
echo " "
|
|
echo " Installation Prefix : /usr"
|
|
echo " Configuration dir : ~/.kde4"
|
|
echo " Update configs : /etc/chakra/updates.conf"
|
|
echo " Chakra Patches : /usr/share/chakra/patches"
|
|
echo " "
|
|
echo " WWW : http://chakra-linux.org"
|
|
echo " Wiki : http://chakra-linux.org/wiki/"
|
|
echo " Forums : http://chakra-linux.org/bbs/"
|
|
echo " Bugtracker: http://chakra-linux.org/bugs/"
|
|
echo " CCR : http://chakra-linux.org/ccr/"
|
|
echo " Bundles : http://chakra-linux.org/bundles.html"
|
|
echo " ChangeLogs: http://gitorious.org/chakra-packages"
|
|
echo " "
|
|
}
|
|
|
|
post_upgrade() {
|
|
post_install $1
|
|
}
|
|
|
|
post_remove() {
|
|
/bin/true
|
|
}
|
|
|
|
op=$1
|
|
shift
|
|
|
|
$op $*
|