File: libfm-extra-dev.postinst

package info (click to toggle)
libfm 1.4.1-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 6,964 kB
  • sloc: ansic: 52,547; makefile: 769; xml: 155; sh: 63; python: 29
file content (11 lines) | stat: -rw-r--r-- 289 bytes parent folder | download | duplicates (7)
1
2
3
4
5
6
7
8
9
10
11
#!/bin/sh
set -e

# remove empty directory so symlink can be installed there
test -d /usr/include/libfm && test ! -h /usr/include/libfm && rmdir /usr/include/libfm
# if no symlink created then create it
test -h /usr/include/libfm || ln -s libfm-1.0 /usr/include/libfm

#DEBHELPER#

exit 0