source: projects/specs/trunk/p/python-docutils/rst-el-install.sh @ 2640

Revision 2640, 775 bytes checked in by iwaim, 13 years ago (diff)

python-docutils 0.6-3

RevLine 
[2640]1#! /bin/sh -e
2# /usr/lib/emacsen-common/packages/install/rst-el
3
4FLAVOR=$1
5PACKAGE=rst-el
6
7FLAGS="${SITEFLAG} -q -batch -f batch-byte-compile"
8
9ELDIR="/usr/share/emacs/site-lisp/${PACKAGE}"
10ELCDIR="/usr/share/${FLAVOR}/site-lisp/${PACKAGE}"
11STARTDIR=/etc/${FLAVOR}/site-start.d
12STARTFILE="${PACKAGE}-init.el"
13
14SOURCES="rst.el"
15
16case "${FLAVOR}" in
17    emacs)
18    ;;
19    *) 
20    echo -n "install/${PACKAGE}: Byte-compiling for ${FLAVOR} ..."
21    install -m 755 -d ${ELCDIR}
22    cd ${ELDIR}
23    cp *.el ${ELCDIR}
24    FILES="${SOURCES}"
25    cd ${ELCDIR}
26    ${FLAVOR} ${FLAGS} ${FILES} > ${ELCDIR}/CompilationLog 2>&1
27    rm -f ${SOURCES}
28    gzip -9 ${ELCDIR}/CompilationLog
29
30    ln -sf ${ELDIR}/${STARTFILE} ${STARTDIR}/95${STARTFILE};
31    echo " done."
32    ;;
33esac
34
35exit 0 ;
Note: See TracBrowser for help on using the repository browser.