slackbuilds/doc/jqfundamentals/jqfundamentals.SlackBuild
Gwenhael Le Moine 2d3c96f8e7 replace TMP by OUTPUT
Signed-off-by: Gwenhael Le Moine <gwenhael.le.moine@gmail.com>
2011-02-17 11:54:04 +07:00

58 lines
1.3 KiB
Bash
Executable file

#!/bin/sh
CWD=$(pwd)
PRGNAM=$(basename $CWD)
VERSION=git$(date +"%Y.%m.%d_%H.%M")
BUILD=1
ARCH=$(uname -m)
REPOSITORIES=/home/cycojesus/projets/packages/repositories
TAG=cyco
TMP=/tmp/$TAG
PKG=$TMP/pkg-$PRGNAM
OUTPUT=/tmp
PREFIX=/usr
# cleaning
rm -fr $PKG
# get sources
[ ! -e $REPOSITORIES ] && mkdir -p $REPOSITORIES
( cd $REPOSITORIES
if [ -e $REPOSITORIES/$PRGNAM ] ; then
( cd $REPOSITORIES/$PRGNAM
git pull
)
else
git clone http://github.com/rmurphey/jqfundamentals.git $REPOSITORIES/$PRGNAM
fi
)
mkdir -p $PKG$PREFIX/doc/
cp -R $REPOSITORIES/$PRGNAM $PKG$PREFIX/doc/$PRGNAM
find $PKG$PREFIX/doc/$PRGNAM -name \.git\* -exec rm -fr {} \;
( cd $PKG
mkdir -p install
cat <<EOF > install/slack-desc
$PRGNAM: $PRGNAM (JQuery book)
$PRGNAM:
$PRGNAM: jQuery is fast becoming a must-have skill for front-end developers. The
$PRGNAM: purpose of this book is to provide an overview of the jQuery JavaScript
$PRGNAM: library; when you're done with the book, you should be able to complete
$PRGNAM: basic tasks using jQuery, and have a solid basis from which to continue
$PRGNAM: your learning.
$PRGNAM:
$PRGNAM:
$PRGNAM: http://jqfundamentals.com/book/book.html
$PRGNAM:
EOF
chown -R root:root *
makepkg -l y -c n $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.txz
)