mirror of
https://codeberg.org/gwh/slackbuilds.git
synced 2024-11-16 19:51:19 +01:00
add Python doc for kindle
This commit is contained in:
parent
8dc659809b
commit
8cd1456e5a
1 changed files with 66 additions and 0 deletions
66
doc/Python-Documentation-Kindle/Python-Documentation-Kindle.SlackBuild
Executable file
66
doc/Python-Documentation-Kindle/Python-Documentation-Kindle.SlackBuild
Executable file
|
@ -0,0 +1,66 @@
|
|||
#!/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/installs/SlackBuilds/repositories/$PRGNAM}
|
||||
|
||||
# nettoyage préalable
|
||||
rm -fr $PKG
|
||||
|
||||
mkdir -p $PKG$PREFIX/doc/
|
||||
|
||||
# mise en place
|
||||
[ ! -e $REPOSITORY ] \
|
||||
&& git clone https://github.com/charlax/Python-Documentation-Kindle.git $REPOSITORY \
|
||||
|| (cd $REPOSITORY; git pull)
|
||||
|
||||
cd $PKG$PREFIX/doc/
|
||||
cp -R $REPOSITORY $PRGNAM
|
||||
cd $PRGNAM
|
||||
rm -fr .git*
|
||||
|
||||
# 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 (Python documentation on your Kindle)
|
||||
$PRGNAM:
|
||||
$PRGNAM: This project lets you download a Kindle-optimized version of the
|
||||
$PRGNAM: Python documentation. You can also create your own ebook for any
|
||||
$PRGNAM: project using Sphinx to generate its documentation.
|
||||
$PRGNAM:
|
||||
$PRGNAM:
|
||||
$PRGNAM:
|
||||
$PRGNAM:
|
||||
$PRGNAM: https://github.com/charlax/Python-Documentation-Kindle
|
||||
$PRGNAM:
|
||||
EOF
|
||||
|
||||
# empaquetage
|
||||
makepkg -l y -c n $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.txz
|
Loading…
Reference in a new issue