This commit is contained in:
Gwenhael Le Moine 2011-04-08 16:22:27 +07:00
parent 36c2e2fb50
commit d3c98b8adc

View file

@ -0,0 +1,67 @@
#!/bin/sh -x
# variables
CWD=$(pwd)
VERSION=${VERSION:-$(date +"%Y.%m.%d_%H.%M")}
BUILD=${BUILD:-1}
TAG=cyco
TMP=${TMP:-/tmp/$TAG}
OUTPUT=${OUTPUT:-/tmp}
PRGNAM=${PRGNAM:-$(basename $CWD)}
PKG=${PKG:-$TMP/pkg-$PRGNAM}
ARCH=${ARCH:-noarch}
PREFIX=${PREFIX:-/usr}
REPOSITORY=${REPOSITORY:=/home/cycojesus/projets/packages/repositories/$PRGNAM}
# nettoyage préalable
rm -fr $PKG
mkdir -p $PKG$PREFIX/doc/
# mise en place
[ ! -e $REPOSITORY ] \
&& git clone https://github.com/ieure/sicp.git $REPOSITORY \
|| (cd $REPOSITORY; git pull)
cd $PKG$PREFIX/doc/
cp -R $REPOSITORY $PRGNAM-$VERSION
cd $PRGNAM-$VERSION
make
rm -fr src .git* Makefile
# 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 (computer-science text)
$PRGNAM:
$PRGNAM: Wizard Book n. Hal Abelson's, Jerry Sussman's and Julie Sussman's
$PRGNAM: Structure and Interpretation of Computer Programs (MIT Press, 1984;
$PRGNAM: ISBN 0-262-01077-1), an excellent computer science text used in
$PRGNAM: introductory courses at MIT. So called because of the wizard on the
$PRGNAM: jacket. One of the bibles of the LISP/Scheme world. Also,
$PRGNAM: less commonly, known as the Purple Book.
$PRGNAM: http://mitpress.mit.edu/sicp/
$PRGNAM: http://groups.csail.mit.edu/mac/classes/6.001/abelson-sussman-lectures/
$PRGNAM: https://github.com/ieure/sicp
EOF
# empaquetage
makepkg -l y -c n $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.txz