#! /bin/sh set -e PACKAGE=lib32ncurses5 if dpkg --compare-versions "$2" lt-nl 5.9-7; then # Replace directory with symlink. if [ ! -L /usr/share/doc/$PACKAGE ] && \ [ -d /usr/share/doc/$PACKAGE ]; then if rmdir /usr/share/doc/$PACKAGE 2>/dev/null; then ln -sf lib32tinfo5 /usr/share/doc/$PACKAGE fi fi fi if dpkg --compare-versions "$2" lt-nl 5.9-10; then # Fix symlink target if [ -L /usr/share/doc/$PACKAGE ] && \ [ "$(readlink -q /usr/share/doc/$PACKAGE)" = "libtinfo5" ]; then ln -snf lib32tinfo5 /usr/share/doc/$PACKAGE fi fi # Automatically added by dh_makeshlibs if [ "$1" = "configure" ]; then ldconfig fi # End automatically added section exit 0