slackbuilds/doc/Smooth-CoffeeScript/Smooth-CoffeeScript.SlackBuild

57 lines
1.2 KiB
Text
Raw Normal View History

2011-08-31 11:33:24 +02:00
#!/bin/sh
CWD=$(pwd)
PRGNAM=$(basename $CWD)
VERSION=$(date +"%Y.%m.%d_%H.%M")
BUILD=1
ARCH=noarch
REPOSITORIES=/home/installs/SlackBuilds/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
if [ -e $REPOSITORIES/$PRGNAM ] ; then
( cd $REPOSITORIES/$PRGNAM
git pull
)
else
git clone http://github.com/autotelicum/Smooth-CoffeeScript.git $REPOSITORIES/$PRGNAM
2011-08-31 11:33:24 +02:00
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 (A book on functional programming in CoffeeScript)
$PRGNAM:
$PRGNAM: Smooth CoffeeScript is a free book about CoffeeScript and programming.
$PRGNAM: No previous programming knowledge is required. Over 200 pages and
$PRGNAM: 35 exercises. Download includes book and full source code with
$PRGNAM: and without solutions.
$PRGNAM:
$PRGNAM:
$PRGNAM:
$PRGNAM: http://github.com/autotelicum/Smooth-CoffeeScript#readme
$PRGNAM:
EOF
chown -R root:root *
makepkg -l y -c n $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.txz
)