File: prerm

package info (click to toggle)
tex-common 5.03
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 1,540 kB
  • ctags: 160
  • sloc: sh: 1,244; perl: 379; lisp: 276; python: 272; makefile: 160; sed: 4
file content (15 lines) | stat: -rw-r--r-- 217 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#!/bin/sh -e
# 
# prerm maintainer script for the Debian tex-common package.

# remove dirs in /usr/local if empty

case $1 in
  remove)
    rmdir /usr/local/share/texmf 2>/dev/null || true
    ;;
esac

#DEBHELPER#