mirror of
https://codeberg.org/gwh/slackbuilds.git
synced 2024-11-16 19:51:19 +01:00
52 lines
2 KiB
Bash
Executable file
52 lines
2 KiB
Bash
Executable file
#!/bin/sh -x
|
|
|
|
CWD=$(pwd)
|
|
|
|
PRGNAM=$(basename $CWD)
|
|
VERSION=${VERSION:-$(wget -O - -o /dev/null http://status.calibre-ebook.com/latest)}
|
|
ARCH=$(uname -m)
|
|
BUILD=${BUILD:-1}
|
|
TAG=${TAG:-cyco}
|
|
TMP=${TMP:-/tmp/$TAG}
|
|
PKG=$TMP/pkg-$PRGNAM
|
|
OUTPUT=${OUTPUT:-/tmp}
|
|
|
|
[ ! -e $CWD/${PRGNAM}-${VERSION}-${ARCH}.txz ] && wget -c -O $CWD/${PRGNAM}-${VERSION}-${ARCH}.txz http://download.calibre-ebook.com/${VERSION}/${PRGNAM}-${VERSION}-${ARCH}.txz
|
|
|
|
rm -fr $PKG
|
|
mkdir -p $PKG/opt/${PRGNAM}
|
|
|
|
tar xvf $CWD/${PRGNAM}-${VERSION}-${ARCH}.txz -C $PKG/opt/${PRGNAM}
|
|
|
|
mkdir -p $PKG/usr/bin
|
|
|
|
$PKG/opt/calibre/calibre_postinstall --root=$PKG/usr
|
|
|
|
cd $PKG/usr/bin
|
|
find . -type l -exec sh -c 'rm "$1"; ln -s ../../opt/calibre/$(basename $1)' _ {} \;
|
|
|
|
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} (e-book library management application)
|
|
${PRGNAM}:
|
|
${PRGNAM}: ${PRGNAM} is meant to be a complete e-library solution.
|
|
${PRGNAM}: It includes library management, format conversion, news feeds to ebook
|
|
${PRGNAM}: conversion as well as e-book reader sync features. ${PRGNAM} is
|
|
${PRGNAM}: primarily a ebook cataloging program. It manages your ebook collection
|
|
${PRGNAM}: for you. It is designed around the concept of the logical book, i.e.
|
|
${PRGNAM}: a single entry in the database that may correspond to ebooks in
|
|
${PRGNAM}: several formats. It also supports conversion to and from a dozen
|
|
${PRGNAM}: different ebook formats.
|
|
${PRGNAM}: ${PRGNAM} home: http://calibre-ebook.com/
|
|
EOF
|
|
|
|
cd $PKG
|
|
/sbin/makepkg -l y -c n ${OUTPUT}/${PRGNAM}-${VERSION}-${ARCH}-${BUILD}${TAG}.txz
|