used version from kanis.fr in diver-el
Signed-off-by: Gwenhael Le Moine <gwenhael.le.moine@gmail.com>
This commit is contained in:
parent
7024722776
commit
2f8714117c
1 changed files with 82 additions and 0 deletions
82
e/UNUSED/verbiste-el/verbiste-el.SlackBuild
Executable file
82
e/UNUSED/verbiste-el/verbiste-el.SlackBuild
Executable file
|
@ -0,0 +1,82 @@
|
|||
#!/bin/sh -x
|
||||
|
||||
# variables
|
||||
VERSION=$(date +"%Y.%m.%d_%H.%M")
|
||||
BUILD=1
|
||||
|
||||
|
||||
TAG=cyco
|
||||
OUTPUT=/tmp
|
||||
TMP=/tmp/$TAG
|
||||
CWD=$(pwd)
|
||||
|
||||
PRGNAM=verbiste-el
|
||||
PKG=$TMP/pkg-$PRGNAM
|
||||
|
||||
ARCH=$(uname -m)
|
||||
|
||||
REPOSITORY=/home/cycojesus/projets/packages/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
|
||||
rm -fr $PKG $TMP/$PRGNAM-$VERSION
|
||||
|
||||
mkdir -p $PKG
|
||||
|
||||
# mise en place
|
||||
# cd $TMP
|
||||
# if [ ! -e $REPOSITORY ] ; then
|
||||
# mkdir -p $(dirname $REPOSITORY)
|
||||
# cd $(dirname $REPOSITORY)
|
||||
# git clone "git://gaffer.ptitcanardnoir.org/verbiste-el.git" $PRGNAM
|
||||
# fi
|
||||
|
||||
# ( cd $REPOSITORY
|
||||
# git pull
|
||||
# )
|
||||
|
||||
mkdir -p $PKG$PREFIX/share/emacs/site-lisp/$PRGNAM
|
||||
# cp -R $REPOSITORY $PKG$PREFIX/share/emacs/site-lisp
|
||||
( cd $PKG$PREFIX/share/emacs/site-lisp/$PRGNAM
|
||||
rm -fr .git
|
||||
[ ! -e $CWD/verbiste.el ] && wget -c http://kanis.fr/hg/lisp/ivan/verbiste.el -O $CWD/verbiste.el
|
||||
cp $CWD/verbiste.el .
|
||||
$EMACS -batch -f batch-byte-compile *.el
|
||||
)
|
||||
|
||||
# correction
|
||||
( 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 (Verbiste in Emacs)
|
||||
$PRGNAM:
|
||||
$PRGNAM: verbiste.el is a package allowing to use the verbiste program to
|
||||
$PRGNAM: conjugate/deconjugate French verbs.
|
||||
$PRGNAM:
|
||||
$PRGNAM:
|
||||
$PRGNAM:
|
||||
$PRGNAM:
|
||||
$PRGNAM:
|
||||
$PRGNAM: http://http://kanis.fr
|
||||
$PRGNAM:
|
||||
EOF
|
||||
|
||||
# empaquetage
|
||||
cd $PKG
|
||||
makepkg -l y -c n $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.txz
|
Loading…
Add table
Reference in a new issue