File: ncurses-base.postinst

package info (click to toggle)
ncurses 5.0-6.0potato2
  • links: PTS
  • area: main
  • in suites: potato
  • size: 8,624 kB
  • ctags: 5,201
  • sloc: ansic: 45,601; ada: 8,217; cpp: 3,726; sh: 3,017; makefile: 1,696; awk: 500; perl: 101; sed: 100
file content (14 lines) | stat: -rw-r--r-- 317 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#! /bin/sh

# Make sure errors report (since we try to weed out potential spurious ones)
set -e

# Create links for ncurses3.0 compatability.
if [ ! -e /usr/lib/terminfo ]; then
  ln -sf ../share/terminfo /usr/lib/terminfo
fi
if [ ! -e /usr/lib/tabset ]; then
  ln -sf ../share/tabset /usr/lib/tabset
fi

#DEBHELPER#