Add calibre SlackBuild that packages the binaries available on calibre-ebook.com
This commit is contained in:
parent
5e7ce6cd55
commit
b6528789f5
1 changed files with 52 additions and 0 deletions
52
xap/calibre/calibre.SlackBuild
Executable file
52
xap/calibre/calibre.SlackBuild
Executable file
|
@ -0,0 +1,52 @@
|
|||
#!/bin/sh -x
|
||||
|
||||
CWD=$(pwd)
|
||||
|
||||
PRGNAM=$(basename $CWD)
|
||||
VERSION=2.22.0
|
||||
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
|
Loading…
Add table
Reference in a new issue