mirror of
https://github.com/Ponce/slackbuilds
synced 2024-11-20 19:41:34 +01:00
office/coolreader: Added (e-book reader)
Signed-off-by: Niels Horn <niels.horn@slackbuilds.org>
This commit is contained in:
parent
b5391ee8f3
commit
41b57bb5d4
5 changed files with 138 additions and 0 deletions
1
office/coolreader/README
Normal file
1
office/coolreader/README
Normal file
|
@ -0,0 +1 @@
|
|||
CoolReader is an e-book reader for various platforms.
|
104
office/coolreader/coolreader.SlackBuild
Normal file
104
office/coolreader/coolreader.SlackBuild
Normal file
|
@ -0,0 +1,104 @@
|
|||
#!/bin/bash
|
||||
|
||||
# Slackware build script for CoolReader
|
||||
|
||||
# Copyright 2011 Fridrich von Stauffenberg <cancellor2@gmail.com>
|
||||
# All rights reserved.
|
||||
#
|
||||
# Redistribution and use of this script, with or without modification, is
|
||||
# permitted provided that the following conditions are met:
|
||||
#
|
||||
# 1. Redistributions of this script must retain the above copyright
|
||||
# notice, this list of conditions and the following disclaimer.
|
||||
#
|
||||
# THIS SOFTWARE IS PROVIDED BY THE AUTHOR ''AS IS'' AND ANY EXPRESS OR IMPLIED
|
||||
# WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
|
||||
# MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO
|
||||
# EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
||||
# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
|
||||
# PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
|
||||
# OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
|
||||
# WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
|
||||
# OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
|
||||
# ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||
|
||||
PRGNAM=coolreader
|
||||
VERSION=${VERSION:-3.0.50}
|
||||
BUILD=${BUILD:-1}
|
||||
TAG=${TAG:-_SBo}
|
||||
|
||||
ORIG_FILENAME=cr
|
||||
ORIG_PRGNAM=cr3
|
||||
ORIG_VERSION=$VERSION-3
|
||||
|
||||
if [ -z "$ARCH" ]; then
|
||||
case "$( uname -m )" in
|
||||
i?86) ARCH=i486 ;;
|
||||
arm*) ARCH=arm ;;
|
||||
*) ARCH=$( uname -m ) ;;
|
||||
esac
|
||||
fi
|
||||
|
||||
CWD=$(pwd)
|
||||
TMP=${TMP:-/tmp/SBo}
|
||||
PKG=$TMP/package-$PRGNAM
|
||||
OUTPUT=${OUTPUT:-/tmp}
|
||||
|
||||
if [ "$ARCH" = "i486" ]; then
|
||||
SLKCFLAGS="-O2 -march=i486 -mtune=i686"
|
||||
LIBDIRSUFFIX=""
|
||||
elif [ "$ARCH" = "i686" ]; then
|
||||
SLKCFLAGS="-O2 -march=i686 -mtune=i686"
|
||||
LIBDIRSUFFIX=""
|
||||
elif [ "$ARCH" = "x86_64" ]; then
|
||||
SLKCFLAGS="-O2 -fPIC"
|
||||
LIBDIRSUFFIX="64"
|
||||
else
|
||||
SLKCFLAGS="-O2"
|
||||
LIBDIRSUFFIX=""
|
||||
fi
|
||||
|
||||
set -e
|
||||
|
||||
rm -rf $PKG
|
||||
mkdir -p $TMP $PKG $OUTPUT
|
||||
cd $TMP
|
||||
rm -rf $ORIG_FILENAME$ORIG_VERSION
|
||||
tar xvf $CWD/$ORIG_PRGNAM\_$VERSION.orig.tar.gz
|
||||
cd $ORIG_FILENAME$ORIG_VERSION
|
||||
chown -R root:root .
|
||||
|
||||
mkdir -p build
|
||||
cd build
|
||||
cmake \
|
||||
-D CMAKE_C_FLAGS:STRING="$SLKCFLAGS" \
|
||||
-D CMAKE_CXX_FLAGS:STRING="$SLKCFLAGS" \
|
||||
-D CMAKE_INSTALL_PREFIX=/usr \
|
||||
-D LIB_SUFFIX=${LIBDIRSUFFIX} \
|
||||
-D CMAKE_BUILD_TYPE=Release \
|
||||
-D MAX_IMAGE_SCALE_MUL=2 \
|
||||
-D DOC_DATA_COMPRESSION_LEVEL=3 \
|
||||
-D DOC_BUFFER_SIZE=0x1400000 \
|
||||
-D GUI=QT ..
|
||||
make VERBOSE=1
|
||||
make install DESTDIR=$PKG
|
||||
cd ..
|
||||
|
||||
find $PKG -print0 | xargs -0 file | grep -e "executable" -e "shared object" | \
|
||||
grep ELF | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null || true
|
||||
|
||||
mkdir -p $PKG/usr/man
|
||||
mv $PKG/usr/share/man/* $PKG/usr/man
|
||||
rm -rf $PKG/usr/share/man
|
||||
|
||||
mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION
|
||||
mv $PKG/usr/share/doc/$ORIG_PRGNAM/* $PKG/usr/doc/$PRGNAM-$VERSION
|
||||
rm -rf $PKG/usr/share/doc
|
||||
cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild
|
||||
|
||||
mkdir -p $PKG/install
|
||||
cat $CWD/slack-desc > $PKG/install/slack-desc
|
||||
cat $CWD/doinst.sh > $PKG/install/doinst.sh
|
||||
|
||||
cd $PKG
|
||||
/sbin/makepkg -l y -c n $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.${PKGTYPE:-tgz}
|
10
office/coolreader/coolreader.info
Normal file
10
office/coolreader/coolreader.info
Normal file
|
@ -0,0 +1,10 @@
|
|||
PRGNAM="coolreader"
|
||||
VERSION="3.0.50"
|
||||
HOMEPAGE="http://coolreader.org"
|
||||
DOWNLOAD="http://downloads.sourceforge.net/crengine/CoolReader3/cr3_3.0.50.orig.tar.gz"
|
||||
MD5SUM="ec949796331e3f6ebe17bad4387d894e"
|
||||
DOWNLOAD_x86_64=""
|
||||
MD5SUM_x86_64=""
|
||||
MAINTAINER="Fridrich von Stauffenberg"
|
||||
EMAIL="cancellor2@gmail.com"
|
||||
APPROVED="Niels Horn"
|
4
office/coolreader/doinst.sh
Normal file
4
office/coolreader/doinst.sh
Normal file
|
@ -0,0 +1,4 @@
|
|||
if [ -x /usr/bin/update-desktop-database ]; then
|
||||
/usr/bin/update-desktop-database -q usr/share/applications >/dev/null 2>&1
|
||||
fi
|
||||
|
19
office/coolreader/slack-desc
Normal file
19
office/coolreader/slack-desc
Normal file
|
@ -0,0 +1,19 @@
|
|||
# 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 ':' except on otherwise blank lines.
|
||||
|
||||
|-----handy-ruler------------------------------------------------------|
|
||||
coolreader: CoolReader (e-book reader)
|
||||
coolreader:
|
||||
coolreader: CoolReader is an e-book reader for various platforms.
|
||||
coolreader:
|
||||
coolreader: Homepage: http://coolreader.org
|
||||
coolreader:
|
||||
coolreader:
|
||||
coolreader:
|
||||
coolreader:
|
||||
coolreader:
|
||||
coolreader:
|
Loading…
Reference in a new issue