slackbuilds_ponce/games/vera/douninst.sh
B. Watson 1c356750f7
games/vera: Various fixes and enhancements.
Signed-off-by: B. Watson <yalhcru@gmail.com>

Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
2021-10-29 17:07:14 +07:00

17 lines
773 B
Bash

# 20211015 bkw: I was going to have a douninst.sh that runs
# /usr/bin/install-info --delete /usr/info/xroar.info.gz /usr/info/dir
# but this won't work because removepkg has already deleted
# /usr/info/xroar.info.gz before it runs douninst.sh. And you can't
# use install-info to remove stuff *by name* from /usr/info/dir;
# the info file must actually exist.
# So the script has to manually remove the entry from the info dir,
# and the Emulators section if it's become empty.
if [ -e usr/info/dir ]; then
# Remove the entry first:
sed -i '/^\* V\.E\.R.\A\.:/d' usr/info/dir
# If the Dictionaries section is empty now, remove it too:
if grep -A1 '^Dictionaries$' usr/info/dir | tail -1 | grep -q '^$'; then
sed -i '/^Dictionaries$/,+1d' usr/info/dir
fi
fi