core/wicd/wicd.install
2015-10-05 03:57:41 +00:00

17 lines
337 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"
}