slackbuilds/UNUSED/e/divers-el/SlackBuild

99 lines
2.5 KiB
Text
Raw Normal View History

#!/bin/sh
# variables
VERSION=$(date +"%Y.%m.%d_%H.%M")
BUILD=1
2020-06-25 11:23:11 +02:00
TAG=gwh
OUTPUT=/tmp
TMP=/tmp/$TAG
CWD=$(pwd)
PRGNAM=divers-el
PKG=$TMP/pkg-$PRGNAM
ARCH=$(uname -m)
2011-07-22 08:41:46 +02:00
REPOSITORY=/home/installs/SlackBuilds/repositories/$PRGNAM
PREFIX=/usr
EMACS=$(basename $(ls /usr/bin/emacs-2*))
EMACS_VERSION=$(echo "$EMACS" | grep -o "\-[0-9\.]*\-" | tr -d - | head -n1)
# nettoyage préalable
2011-05-09 04:12:58 +02:00
rm -fr $PKG $TMP/$PRGNAM-$VERSION
mkdir -p $PKG
# mise en place
2011-04-05 16:48:18 +02:00
mkdir -p $CWD/els $CWD/themes
elfileget_or_update() {
URL=$1
FILENAME=$(echo "$URL" | grep -o -e "[/=][A-Za-z0-9+-]*\.el" | tr -d '=' | tr -d '/')
wget --no-check-certificate -T 10 -t 3 -c "$URL" -O $FILENAME.new
[ -s $FILENAME.new ] && mv $FILENAME.new $FILENAME || rm $FILENAME.new
}
cd $CWD/els
for el in \
2012-04-13 08:00:12 +02:00
"http://www.bobnewell.net/filez/writer-names.el" \
2011-12-16 17:18:59 +01:00
"https://gitorious.org/robmyers/scripts/blobs/raw/master/artbollocks-mode.el" \
2011-06-09 18:01:21 +02:00
"http://kanis.fr/hg/lisp/ivan/verbiste.el" \
2011-04-05 16:48:18 +02:00
"https://github.com/metajack/jekyll/raw/master/emacs/jekyll.el" \
"http://www.bobnewell.net/elisp/speedread.el" \
2012-01-24 16:12:29 +01:00
"http://www.ccs.neu.edu/home/guttman/undoc.el" ;
2011-04-05 16:48:18 +02:00
do
elfileget_or_update "$el"
done
2011-05-09 04:12:58 +02:00
cd $CWD/themes
for el in \
2011-12-04 21:25:35 +01:00
"https://github.com/monotux/emacs-d/raw/master/themes/whiteboard-theme.el" \
"http://edward.oconnor.cx/config/elisp/hober2-theme.el" ;
2011-05-09 04:12:58 +02:00
do
elfileget_or_update "$el"
done
2011-04-05 16:48:18 +02:00
mkdir -p $PKG$PREFIX/share/emacs/$EMACS_VERSION/etc/themes $PKG$PREFIX/share/emacs/site-lisp/
cd $PKG$PREFIX/share/emacs/site-lisp/
cp $CWD/els/*.el $CWD/*.el .
2011-04-05 16:48:18 +02:00
$EMACS -batch -f batch-byte-compile *.el
2011-05-16 03:17:14 +02:00
cd $PKG$PREFIX/share/emacs/$EMACS_VERSION/etc/themes
cp $CWD/themes/*.el .
# correction
2011-04-05 16:48:18 +02:00
cd $PKG
chown -R root:root *
# embaumement
mkdir -p $PKG/install
cat <<EOF > $PKG/install/slack-desc
# HOW TO EDIT THIS FILE:
# The "handy ruler" below makes it easier to edit a package description. Line
# up the first '|' above the ':' following the base package name, and the '|'
# on the right side marks the last column you can put a character in. You must
# make exactly 11 lines for the formatting to be correct. It's also
# customary to leave one space after the ':'.
|-----handy-ruler------------------------------------------------------|
$PRGNAM: $PRGNAM (misc el files for Emacs)
$PRGNAM:
$PRGNAM:
$PRGNAM:
$PRGNAM:
$PRGNAM:
$PRGNAM:
$PRGNAM:
$PRGNAM:
$PRGNAM:
$PRGNAM:
EOF
# empaquetage
rm -f $PKG/{,usr/}lib$(uname -m | grep -o 64)/*.la
2020-07-12 09:22:26 +02:00
/sbin/makepkg -l y -c n $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.txz