revamped
This commit is contained in:
parent
1df32d2bba
commit
0d60f4fcf0
1 changed files with 56 additions and 0 deletions
56
doc/Smooth-CoffeeScript/Smooth-CoffeeScript.SlackBuild
Executable file
56
doc/Smooth-CoffeeScript/Smooth-CoffeeScript.SlackBuild
Executable file
|
@ -0,0 +1,56 @@
|
||||||
|
#!/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 https://github.com/autotelicum/Smooth-CoffeeScript.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 (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
|
||||||
|
)
|
Loading…
Reference in a new issue