| Revision 2062,
1.1 KB
checked in by iwaim, 16 years ago
(diff) |
|
git 1.7.3.1-1
|
-
Property svn:executable set to
*
|
| Rev | Line | |
|---|
| [1965] | 1 | #! /bin/sh -e |
|---|
| 2 | # /usr/lib/emacsen-common/packages/install/git |
|---|
| 3 | |
|---|
| 4 | set -e |
|---|
| 5 | |
|---|
| 6 | FLAVOR=$1 |
|---|
| 7 | PACKAGE="git" |
|---|
| 8 | |
|---|
| [2062] | 9 | SOURCES="git.el git-blame.el" |
|---|
| [1965] | 10 | |
|---|
| 11 | if [ "X${FLAVOR}" = "X" ]; then |
|---|
| 12 | echo Need argument to determin FLAVOR of emacs; |
|---|
| 13 | exit 1 |
|---|
| 14 | fi |
|---|
| 15 | |
|---|
| 16 | if [ "X${PACKAGE}" = "X" ]; then |
|---|
| 17 | echo Internal error: need package name; |
|---|
| 18 | exit 1; |
|---|
| 19 | fi |
|---|
| 20 | |
|---|
| 21 | ELDIR=/usr/share/emacs/site-lisp/${PACKAGE} |
|---|
| 22 | ELCDIR=/usr/share/${FLAVOR}/site-lisp/${PACKAGE} |
|---|
| 23 | |
|---|
| 24 | STARTDIR=/etc/${FLAVOR}/site-start.d |
|---|
| 25 | STARTFILE="${PACKAGE}-init.el"; |
|---|
| 26 | |
|---|
| 27 | case "${FLAVOR}" in |
|---|
| 28 | emacs|emacs19|mule) |
|---|
| 29 | ;; |
|---|
| 30 | *) |
|---|
| 31 | echo -n "install/${PACKAGE}: Byte-compiling for ${FLAVOR} ..." |
|---|
| 32 | rm -rf ${ELCDIR} |
|---|
| 33 | install -m 755 -d ${ELCDIR} |
|---|
| 34 | |
|---|
| 35 | # Copy the temp .el files |
|---|
| 36 | cp -a ${ELDIR}/* ${ELCDIR}/ |
|---|
| 37 | |
|---|
| 38 | # Byte compile them |
|---|
| 39 | (cd ${ELCDIR} |
|---|
| 40 | ${FLAVOR} -batch -q -no-site-file \ |
|---|
| [2062] | 41 | -f batch-byte-compile ${SOURCES} > CompilationLog 2>&1 |
|---|
| 42 | rm -f ${SOURCES} |
|---|
| [1965] | 43 | ) |
|---|
| 44 | gzip -9 ${ELCDIR}/CompilationLog |
|---|
| [2062] | 45 | ln -sf ${ELDIR}/${STARTFILE} ${STARTDIR}/55${STARTFILE} |
|---|
| [1965] | 46 | echo " done." |
|---|
| 47 | # |
|---|
| 48 | ;; |
|---|
| 49 | esac |
|---|
| 50 | |
|---|
| 51 | exit 0; |
|---|
Note: See
TracBrowser
for help on using the repository browser.