summaryrefslogtreecommitdiff
path: root/debian/postinst
blob: 5a688611c3e0f38557f3c2fe41aa901ca1f7c589 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#! /bin/sh
set -e

# postinst script for a2ps

package=a2ps

# We need to test that there are emacsen installed before calling emacs-package-*
if [ "$1" = "configure" ] && [ -x /usr/lib/emacsen-common/emacs-package-install ]
then
    [ -e /var/lib/emacsen-common/installed-flavors ] && /usr/lib/emacsen-common/emacs-package-install $package
fi

#DEBHELPER#

exit 0