install and deinstall /usr/lib/sasl as needed

This commit is contained in:
jakob 2002-10-04 08:45:26 +00:00
parent 45599a96fc
commit a57708277f
2 changed files with 23 additions and 0 deletions

View File

@ -0,0 +1,11 @@
#!/bin/sh
#
# $Id: DEINSTALL,v 1.1 2002/10/04 08:45:26 jakob Exp $
PATH=/bin:/usr/bin:/sbin:/usr/sbin
if [ -L /usr/lib/sasl ]; then
rm /usr/lib/sasl
fi
exit 0

View File

@ -0,0 +1,12 @@
#!/bin/sh
#
# $Id: INSTALL,v 1.1 2002/10/04 08:45:26 jakob Exp $
PATH=/bin:/usr/bin:/sbin:/usr/sbin
PREFIX=${PKG_PREFIX:-/usr/local}
if [ ! -e /usr/lib/sasl ]; then
ln -s ${PREFIX}/lib/sasl /usr/lib/sasl
fi
exit 0