diff options
| author | Cecil Hugh Watson <knoppmyth@gmail.com> | 2009-02-28 05:18:20 (GMT) | 
|---|---|---|
| committer | Cecil Hugh Watson <knoppmyth@gmail.com> | 2009-02-28 05:18:20 (GMT) | 
| commit | f8ed07d415ace905fe7bf99717c53275e04a42be (patch) | |
| tree | 1ee24fb9281c473b93b79cfb1996a4bac283ca86 /abs/extra-testing/community/screen/screen.install | |
| parent | a2800b8b4932abb6c8d5b0c32c1f9ba76adc4508 (diff) | |
| download | linhes_pkgbuild-f8ed07d415ace905fe7bf99717c53275e04a42be.zip linhes_pkgbuild-f8ed07d415ace905fe7bf99717c53275e04a42be.tar.gz linhes_pkgbuild-f8ed07d415ace905fe7bf99717c53275e04a42be.tar.bz2 | |
Requested by the community.
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 $* | 
