~ubuntu-branches/ubuntu/natty/auctex/natty

« back to all changes in this revision

Viewing changes to debian/preview-latex-style/prerm.in

  • Committer: Bazaar Package Importer
  • Author(s): Davide G. M. Salvetti
  • Date: 2007-03-14 00:43:56 UTC
  • mfrom: (2.1.8 feisty)
  • Revision ID: james.westby@ubuntu.com-20070314004356-xtqoxu6ousd1ldn6
Tags: 11.83-6
* Rebuild with clean source.
* rules.in (build-package): Added dependency on the "clean" target.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#include "variables"
 
2
#! /bin/bash -e
 
3
#
 
4
# <% postinst %> script for <:=${PLSPKG}:>
 
5
#
 
6
<:=@COPYRIGHT:>//
 
7
 
 
8
set -o posix
 
9
 
 
10
case "${1}" in
 
11
    (deconfigure|remove|upgrade|failed-upgrade)
 
12
    <:# deregister documentation with <% doc-base %> :>//
 
13
    <:=${DREMOVE}:> <:=${PLSPKG}:>
 
14
    ;;
 
15
    (*) echo >&2 "${0##*/}/<:=${PLSPKG}:>:" \
 
16
        "Unknown argument: \"${1}\"."
 
17
    exit 1
 
18
    ;;
 
19
esac
 
20
 
 
21
exit 0
 
22
<:
 
23
# arch-tag: 06c80812-acc7-473e-8fd7-77a72bbcdb0c
 
24
#
 
25
# local variables:
 
26
# mode: shell-script
 
27
# coding: utf-8
 
28
# ispell-local-dictionary: "american"
 
29
# ispell-check-comments: exclusive
 
30
# end:
 
31
#
 
32
# LocalWords:  deregister
 
33
:>//