added, replacing obsolete ri-emacs
This commit is contained in:
parent
af8a21897b
commit
4eb3c6f728
1 changed files with 78 additions and 0 deletions
78
e/yari.el/yari.el.SlackBuild
Executable file
78
e/yari.el/yari.el.SlackBuild
Executable file
|
@ -0,0 +1,78 @@
|
||||||
|
#!/bin/sh -x
|
||||||
|
|
||||||
|
# variables
|
||||||
|
VERSION=${VERSION:-$(date +"%Y.%m.%d_%H.%M")}
|
||||||
|
ARCH=${ARCH:-$(uname -m)}
|
||||||
|
BUILD=${BUILD:-1}
|
||||||
|
|
||||||
|
|
||||||
|
TAG=cyco
|
||||||
|
TMP=/tmp/$TAG
|
||||||
|
OUTPUT=/tmp
|
||||||
|
CWD=$(pwd)
|
||||||
|
|
||||||
|
PRGNAM=$(basename $CWD)
|
||||||
|
PKG=$TMP/pkg-$PRGNAM
|
||||||
|
|
||||||
|
REPOSITORY=/home/cycojesus/projets/packages/repositories/$PRGNAM
|
||||||
|
PREFIX=/usr
|
||||||
|
|
||||||
|
EMACS=$(basename $(ls /usr/bin/emacs-2*))
|
||||||
|
EMACS_VERSION=$(echo "$EMACS" | grep -o "[0-9\.]*")
|
||||||
|
|
||||||
|
# nettoyage préalable
|
||||||
|
rm -fr $PKG $TMP/$PRGNAM-$VERSION
|
||||||
|
|
||||||
|
mkdir -p $PKG
|
||||||
|
|
||||||
|
# mise en place
|
||||||
|
cd $TMP
|
||||||
|
if [ ! -e $REPOSITORY ] ; then
|
||||||
|
mkdir -p $(dirname $REPOSITORY)
|
||||||
|
git clone https://github.com/hron/yari.el.git $REPOSITORY
|
||||||
|
else
|
||||||
|
( cd $REPOSITORY
|
||||||
|
git pull
|
||||||
|
)
|
||||||
|
fi
|
||||||
|
|
||||||
|
mkdir -p $PKG$PREFIX/share/emacs/site-lisp
|
||||||
|
cp -R $REPOSITORY $PKG$PREFIX/share/emacs/site-lisp
|
||||||
|
|
||||||
|
cd $PKG$PREFIX/share/emacs/site-lisp/$PRGNAM
|
||||||
|
rm -fr .git*
|
||||||
|
$EMACS -batch -f batch-byte-compile *.el vendor/*.el
|
||||||
|
|
||||||
|
# correction
|
||||||
|
chown -R root:root $PKG
|
||||||
|
|
||||||
|
[ -d $PKG$PREFIX/share/emacs/site-lisp ] && \
|
||||||
|
find $PKG$PREFIX/share/emacs/site-lisp -type f -name "*.el" -exec gzip -9f {} \;
|
||||||
|
|
||||||
|
# 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 (Ruby's ri fronotend for Emacs)
|
||||||
|
$PRGNAM:
|
||||||
|
$PRGNAM: yari.el provides an Emacs frontend to Ruby's 'ri' documentation
|
||||||
|
$PRGNAM: tool. It offers lookup and completion.
|
||||||
|
$PRGNAM:
|
||||||
|
$PRGNAM:
|
||||||
|
$PRGNAM:
|
||||||
|
$PRGNAM:
|
||||||
|
$PRGNAM:
|
||||||
|
$PRGNAM: http://github.com/hron/yari.el
|
||||||
|
$PRGNAM:
|
||||||
|
EOF
|
||||||
|
|
||||||
|
# empaquetage
|
||||||
|
cd $PKG
|
||||||
|
makepkg -l y -c n $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.txz
|
Loading…
Reference in a new issue