mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-05 14:47:15 +08:00
20 lines
427 B
Plaintext
20 lines
427 B
Plaintext
PKGNAME=wicd
|
|
|
|
pre_remove () {
|
|
for pyo in $(pacman -Qql $PKGNAME | grep \.py$ | sed 's|.py$|.pyo|g'); do
|
|
if [ -f "$pyo" ]; then
|
|
rm "$pyo"
|
|
fi
|
|
done
|
|
}
|
|
|
|
post_install() {
|
|
echo
|
|
echo "==> You need to enable the wicd systemd service"
|
|
echo "==> Please run:"
|
|
echo "==> sudo systemctl enable wicd"
|
|
echo "==> Wireless Interface Connection Daemon"
|
|
echo
|
|
echo "==> To run: wicd-client"
|
|
}
|