slackbuilds/doc/sicp-kindle/SlackBuild

65 lines
1.9 KiB
Text
Raw Normal View History

#!/bin/sh
2011-12-20 15:32:43 +01:00
# 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/installs/SlackBuilds/repositories/$PRGNAM}
# nettoyage préalable
rm -fr $PKG
mkdir -p $PKG$PREFIX/doc/
# mise en place
2016-09-18 22:48:56 +02:00
[ ! -e $REPOSITORY ] && git clone http://github.com/twcamper/sicp-kindle $REPOSITORY
( cd $REPOSITORY && git pull )
VERSION="$( cd $REPOSITORY && git log -1 --format=%h_%ad --date=format:%Y.%m.%d )"
cp -R $REPOSITORY $PKG$PREFIX/doc/$PRGNAM
rm -fr $PKG$PREFIX/doc/$PRGNAM/.git*
2011-12-20 15:32:43 +01:00
# 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: http://github.com/twcamper/sicp-kindle
2011-12-20 15:32:43 +01:00
EOF
# empaquetage
makepkg -l y -c n $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.txz