#!/bin/sh -e
#
# postinst for ncftp3

update-alternatives --install /usr/bin/ncftp ncftp /usr/bin/ncftp3 10 \
  --slave /usr/share/man/man1/ncftp.1.gz ncftp.1.gz /usr/share/man/man1/ncftp3.1.gz

# Automatically added by dh_installdocs
if [ "$1" = "configure" ]; then
	if [ -d /usr/doc -a ! -e /usr/doc/ncftp -a -d /usr/share/doc/ncftp ]; then
		ln -sf ../share/doc/ncftp /usr/doc/ncftp
	fi
fi
# End automatically added section
# Automatically added by dh_installmenu
if test -x /usr/bin/update-menus ; then update-menus ; fi
# End automatically added section

