File: git-el.emacsen-install

package info (click to toggle)
git 1%3A1.7.10.4-1%2Bwheezy3
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 22,468 kB
  • sloc: ansic: 131,677; sh: 101,927; perl: 25,746; tcl: 20,816; python: 4,441; makefile: 3,418; lisp: 1,785; asm: 98
file content (33 lines) | stat: -rw-r--r-- 995 bytes parent folder | download | duplicates (8)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
#!/bin/sh
# Based on /usr/share/doc/emacsen-common/sample-package-install-foo.gz.
#
# Unlike the example, we place symlinks to the elisp source alongside
# the compiled bytecode, so the .el source is available to the various
# Emacs help tools.  Putting .el and .elc files in the same directory
# keeps "list-load-path-shadows" happy.

set -e
FLAVOR=$1
el_files="git.el git-blame.el"
el_dir=/usr/share/git-core/emacs
elc_dir=/usr/share/$FLAVOR/site-lisp/git

# The emacs startup file looks for these files in
# /usr/share/${debian-emacs-flavor}/site-lisp/git.
# Installing to the generic /usr/share/emacs/site-list/git would be
# pointless.
[ "$FLAVOR" != emacs ] || exit 0

printf 'install/git: Handling install of emacsen flavor %s\n' "$FLAVOR"
[ -d "$elc_dir" ] || mkdir "$elc_dir"
(
  cd $elc_dir
  for i in $el_files
  do
    ln -sf $el_dir/$i $i
  done

  printf 'install/git: Byte-compiling for %s\n' "$FLAVOR"
  set -x
  $FLAVOR -batch -q -no-site-file -f batch-byte-compile $el_files
)