summaryrefslogtreecommitdiffstats
path: root/abs/extra-testing/community/screen/screen.install
diff options
context:
space:
mode:
Diffstat (limited to 'abs/extra-testing/community/screen/screen.install')
-rw-r--r--abs/extra-testing/community/screen/screen.install27
1 files changed, 0 insertions, 27 deletions
diff --git a/abs/extra-testing/community/screen/screen.install b/abs/extra-testing/community/screen/screen.install
deleted file mode 100644
index 51bd6a7..0000000
--- a/abs/extra-testing/community/screen/screen.install
+++ /dev/null
@@ -1,27 +0,0 @@
-
-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 $*