mirror of
https://git.notmuchmail.org/git/notmuch
synced 2024-11-29 06:04:11 +01:00
6f3d3c68a0
- rename emacsen-install/remove files, and change embedded package name - split notmuch.install, notmuch.dirs - add Breaks/Replaces for previous notmuch packages with overlapping files.
10 lines
255 B
Bash
Executable file
10 lines
255 B
Bash
Executable file
#!/bin/sh -e
|
|
# /usr/lib/emacsen-common/packages/remove/notmuch-emacs
|
|
|
|
FLAVOR=$1
|
|
PACKAGE=notmuch
|
|
|
|
if [ ${FLAVOR} != emacs ]; then
|
|
echo remove/${PACKAGE}: purging byte-compiled files for ${FLAVOR}
|
|
rm -rf /usr/share/${FLAVOR}/site-lisp/${PACKAGE}
|
|
fi
|