diff options
Diffstat (limited to 'abs/extra-testing/community/screen/screen.install')
| -rw-r--r-- | abs/extra-testing/community/screen/screen.install | 27 | 
1 files changed, 27 insertions, 0 deletions
| diff --git a/abs/extra-testing/community/screen/screen.install b/abs/extra-testing/community/screen/screen.install new file mode 100644 index 0000000..51bd6a7 --- /dev/null +++ b/abs/extra-testing/community/screen/screen.install @@ -0,0 +1,27 @@ + +pre_upgrade() { +    pre_remove $* +} + +pre_remove() { +    compiled="/usr/share/terminfo/s/screen-256color" +    if [ -e $compiled ]; then +        if pacman -Qo $compiled 2>&1 | grep "No package owns" >/dev/null; then +            echo -n "removing compiled terminfo..." +            rm -f $compiled +            echo "done." +        fi +    fi +    compiled="/usr/share/terminfo/s/screen-256color-bce" +    if [ -e $compiled ]; then +        if pacman -Qo $compiled 2>&1 | grep "No package owns" >/dev/null; then +            echo -n "removing compiled terminfo..." +            rm -f $compiled +            echo "done." +        fi +    fi +} + +op=$1 +shift +$op $* | 
