source: projects/specs/trunk/m/mozc/mozc-install.sh @ 2063

Revision 2063, 772 bytes checked in by iwaim, 14 years ago (diff)

mozc 0.13.499.102-1

  • Property svn:executable set to *
Line 
1#! /bin/sh -e
2# /usr/lib/emacsen-common/packages/install/mozc
3
4FLAVOR=$1
5PACKAGE=mozc
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="mozc.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.