9e85fc7746
cmake-data - common modules and documentation. Architecture independant. Move emacsen stuff in here. cmake - cmake, cpack and ctest and other CLI utilities. cmake is necessary for all GUIs. cmake-curses-gui - CMake Curses GUI. cmake-qt-gui - CMake Qt4 GUI. Signed-off-by: Modestas Vainius <modestas@vainius.eu>
12 lines
224 B
Bash
12 lines
224 B
Bash
#!/bin/sh
|
|
set -e
|
|
|
|
FLAVOR=$1
|
|
PACKAGE=cmake-data
|
|
ELCFILE=cmake-mode.elc
|
|
|
|
if [ ${FLAVOR} != emacs ]; then
|
|
echo remove/${PACKAGE}: Purging byte-compiled files for ${FLAVOR}
|
|
rm -f /usr/share/${FLAVOR}/site-lisp/${ELCFILE}
|
|
fi
|