add e/qwe

Signed-off-by: Gwenhael Le moine <gwenhael.le.moine@gmail.com>
This commit is contained in:
Gwenhael Le moine 2010-01-18 21:17:48 +07:00
parent c70cee35f6
commit a43bc367c1

82
e/qwe/qwe.SlackBuild Executable file
View file

@ -0,0 +1,82 @@
#!/bin/sh -x
# variables
VERSION=master_$(date +"%Y.%m.%d_%H:%M")
BUILD=1
PACKAGER=cyco
TMP=/tmp
CWD=$(pwd)
PRGNAM=qwe
PKG=$TMP/$PACKAGER/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)
hg clone http://hg.savannah.nongnu.org/hgweb/qwe/ $PRGNAM
fi
( cd $REPOSITORY
hg pull -u
)
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 .hg*
$EMACS -batch -f batch-byte-compile src/*.el ext/*.el
mkdir -p $PKG$PREFIX/doc/$PRGNAM
mv COPYING COPYING.qwe INSTALL NEWS README doc img test header.qwe index.qwe \
$PKG$PREFIX/doc/$PRGNAM
)
# 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 (Literate Programming tool)
$PRGNAM:
$PRGNAM: QWE stands for QWE's not WEB for Emacs. It was born as a proof of concept
$PRGNAM: to build a quasi-WYSIWYG Literate Programming tool for almost any programming
$PRGNAM: language, aiming to improve software documentation, presentation and
$PRGNAM: maintenance. Slightly inspired by LaTeX and WEB, QWE is based on its own
$PRGNAM: lightweight markup language.
$PRGNAM:
$PRGNAM:
$PRGNAM: http://www.nongnu.org/qwe/
$PRGNAM:
EOF
# empaquetage
cd $PKG
makepkg -l y -c n $TMP/$PRGNAM-$VERSION-$ARCH-$BUILD$PACKAGER.txz