aboutsummaryrefslogtreecommitdiff
path: root/uninstall.do
blob: 3347874201ce2557c414a93a71dfaed6c4c968e1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
. ./config.rc

# Remove executables.
getbin | while read -r file; do
    rm -f "${DESTDIR}${BINDIR}/${file##*/}"
done

# Remove manual pages.
for man in man/*.1; do
    rm -f "${DESTDIR}${MAN1}/${man##*/}"
done

# Remove the info page.
rm -f "${DESTDIR}${INFODIR}/cpt.info"