aboutsummaryrefslogtreecommitdiffstats
path: root/cad/linux-eagle5/files/pkg-deinstall.in
blob: 564489a5ab1be2f50b68697c83b02692566f0859 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#!/bin/sh

PATH=/bin:/usr/sbin:/usr/bin:/usr/sbin

DATADIR="%%DATADIR%%"

post-deinstall() {
    echo "WARNING: If you will *NOT* use this package anymore, please remote 
the"
    echo " following file manually:"
    echo " ${DATADIR}/bin/eagle.key"
    echo
}

case $2 in
    POST-DEINSTALL)
        post-deinstall
        ;;
esac