/usr/lib/emacsen-common/packages/install/gramadoir is in gramadoir 0.6-4.
This file is owned by root:root, with mode 0o755.
The actual contents of the file can be viewed below.
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 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 | #!/bin/sh
#
# emacsen install script for the Debian GNU/Linux octave package
#
# Written by Dirk Eddelbuettel <edd@debian.org>
#
# Modified by Alastair McKinstry <mckinstry@debian.org>
# for the gramadoir Debian package
set -e
# Canadian spelling ;-)
flavour=$1
package=gramadoir
files="gramadoir.el"
source=/usr/share/emacs/site-lisp/${package}
destination=/usr/share/${flavour}/site-lisp/${package}
if [ `echo $flavour | cut -c-6` = xemacs ] ; then
flags="-no-site-file"
else
flags="--no-site-file"
fi
flags="${flags} -q -batch -l path.el -f batch-byte-compile"
if [ ${flavour} != emacs ]
then
echo install/${package}: Byte-compiling for emacsen flavour ${flavour}
# Copy the temp .el files into the destination directory
install -c -m 0755 -d ${destination}
for i in $files
do
cp $source/$i $destination
done
# Byte compile them
# The lpath.el trick is from Davide Salvetti's auctec package
cd ${destination}
cat <<-EOF >path.el
(setq load-path (cons "." load-path)
byte-compile-warnings nil)
EOF
${flavour} ${flags} ${files}
rm ${files} path.el
else
echo install/${package}: Ignoring emacsen flavour ${flavour}
fi
exit 0;
|