2021-07-03 19:48:15 +02:00
|
|
|
#!/bin/bash
|
2010-05-11 20:00:37 +02:00
|
|
|
|
2010-05-13 00:28:12 +02:00
|
|
|
# Slackware build script for QComicBook:
|
|
|
|
# a program to visualize digitalized comic books
|
2010-05-11 20:00:37 +02:00
|
|
|
|
2010-05-13 00:28:12 +02:00
|
|
|
# Original version written by Amiralul - tanaselia@gmail.com
|
2011-09-03 15:16:47 +02:00
|
|
|
|
2012-07-30 07:34:09 +02:00
|
|
|
# Copyright 2009-2012 Niels Horn, Rio de Janeiro, RJ, Brazil
|
2011-09-03 15:16:47 +02:00
|
|
|
# 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.
|
|
|
|
|
2012-07-30 07:34:09 +02:00
|
|
|
# revision date 2012/07/23
|
2010-05-11 20:00:37 +02:00
|
|
|
|
2021-07-04 11:41:06 +02:00
|
|
|
cd $(dirname $0) ; CWD=$(pwd)
|
|
|
|
|
2010-05-11 20:00:37 +02:00
|
|
|
PRGNAM=qcomicbook
|
2021-06-18 11:50:08 +02:00
|
|
|
SRCNAM=QComicBook
|
|
|
|
VERSION=${VERSION:-0.9.1}
|
2010-08-26 03:27:31 +02:00
|
|
|
BUILD=${BUILD:-1}
|
2010-05-11 20:00:37 +02:00
|
|
|
TAG=${TAG:-_SBo}
|
2021-07-04 12:23:38 +02:00
|
|
|
PKGTYPE=${PKGTYPE:-tgz}
|
2010-05-13 00:28:12 +02:00
|
|
|
|
2010-06-04 07:05:33 +02:00
|
|
|
if [ -z "$ARCH" ]; then
|
|
|
|
case "$( uname -m )" in
|
2021-06-18 11:50:08 +02:00
|
|
|
i?86) ARCH=i586 ;;
|
2010-06-04 07:05:33 +02:00
|
|
|
arm*) ARCH=arm ;;
|
|
|
|
*) ARCH=$( uname -m ) ;;
|
|
|
|
esac
|
|
|
|
fi
|
|
|
|
|
2021-07-04 12:23:38 +02:00
|
|
|
if [ ! -z "${PRINT_PACKAGE_NAME}" ]; then
|
|
|
|
echo "$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.$PKGTYPE"
|
|
|
|
exit 0
|
|
|
|
fi
|
|
|
|
|
2010-05-11 20:00:37 +02:00
|
|
|
TMP=${TMP:-/tmp/SBo}
|
|
|
|
PKG=$TMP/package-$PRGNAM
|
|
|
|
OUTPUT=${OUTPUT:-/tmp}
|
|
|
|
|
2021-06-18 11:50:08 +02:00
|
|
|
if [ "$ARCH" = "i586" ]; then
|
|
|
|
SLKCFLAGS="-O2 -march=i586 -mtune=i686"
|
2010-05-13 00:28:12 +02:00
|
|
|
LIBDIRSUFFIX=""
|
2010-05-11 20:00:37 +02:00
|
|
|
elif [ "$ARCH" = "i686" ]; then
|
|
|
|
SLKCFLAGS="-O2 -march=i686 -mtune=i686"
|
2010-05-13 00:28:12 +02:00
|
|
|
LIBDIRSUFFIX=""
|
|
|
|
elif [ "$ARCH" = "x86_64" ]; then
|
|
|
|
SLKCFLAGS="-O2 -fPIC"
|
|
|
|
LIBDIRSUFFIX="64"
|
2010-06-04 07:05:33 +02:00
|
|
|
else
|
|
|
|
SLKCFLAGS="-O2"
|
|
|
|
LIBDIRSUFFIX=""
|
2010-05-11 20:00:37 +02:00
|
|
|
fi
|
|
|
|
|
|
|
|
set -e
|
|
|
|
|
2021-06-18 11:50:08 +02:00
|
|
|
rm -rf $PKG
|
2010-05-11 20:00:37 +02:00
|
|
|
mkdir -p $TMP $PKG $OUTPUT
|
|
|
|
cd $TMP
|
2021-06-18 11:50:08 +02:00
|
|
|
rm -rf $SRCNAM-$VERSION
|
2022-02-26 17:12:11 +01:00
|
|
|
tar xvf $CWD/$SRCNAM-$VERSION.tar.gz
|
2021-06-18 11:50:08 +02:00
|
|
|
cd $SRCNAM-$VERSION
|
2010-05-11 20:00:37 +02:00
|
|
|
chown -R root:root .
|
2013-11-25 12:23:31 +01:00
|
|
|
find -L . \
|
|
|
|
\( -perm 777 -o -perm 775 -o -perm 750 -o -perm 711 -o -perm 555 \
|
2022-02-26 17:12:11 +01:00
|
|
|
-o -perm 511 \) -exec chmod 755 {} \+ -o \
|
2013-11-25 12:23:31 +01:00
|
|
|
\( -perm 666 -o -perm 664 -o -perm 640 -o -perm 600 -o -perm 444 \
|
2022-02-26 17:12:11 +01:00
|
|
|
-o -perm 440 -o -perm 400 \) -exec chmod 644 {} \+
|
2010-05-11 20:00:37 +02:00
|
|
|
|
2016-08-26 11:14:26 +02:00
|
|
|
# Icon info in the desktop file should not have a file extension
|
|
|
|
sed -i 's/\.png$//' data/qcomicbook.desktop
|
|
|
|
|
|
|
|
# Remove the iCCP chunk from the PNG images to avoid warnings
|
|
|
|
for i in data/*.png; do
|
|
|
|
mv $i $i.old.png
|
|
|
|
convert $i.old.png $i
|
|
|
|
rm $i.old.png
|
|
|
|
done
|
|
|
|
|
2010-05-13 00:28:12 +02:00
|
|
|
cmake . \
|
|
|
|
-DCMAKE_CXX_FLAGS_RELEASE:STRING="$SLKCFLAGS -DNDEBUG" \
|
|
|
|
-DCMAKE_INSTALL_PREFIX=/usr \
|
|
|
|
-DCMAKE_BUILD_TYPE=Release
|
2010-05-11 20:00:37 +02:00
|
|
|
|
2010-05-13 00:28:12 +02:00
|
|
|
make VERBOSE=1
|
2022-02-26 17:12:11 +01:00
|
|
|
make install/strip DESTDIR=$PKG
|
2010-05-11 20:00:37 +02:00
|
|
|
|
2010-05-13 00:28:12 +02:00
|
|
|
# Move manpage to correct location and gzip them
|
|
|
|
mv $PKG/usr/share/man $PKG/usr/man
|
2010-05-11 20:00:37 +02:00
|
|
|
gzip -9 $PKG/usr/man/man1/$PRGNAM.1
|
|
|
|
|
2010-05-13 00:28:12 +02:00
|
|
|
mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION
|
|
|
|
cp -a \
|
2021-06-18 11:50:08 +02:00
|
|
|
AUTHORS COPYING ChangeLog README THANKS TODO \
|
2010-05-13 00:28:12 +02:00
|
|
|
$PKG/usr/doc/$PRGNAM-$VERSION/
|
|
|
|
cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild
|
|
|
|
|
2010-05-11 20:00:37 +02:00
|
|
|
mkdir -p $PKG/install
|
|
|
|
cat $CWD/slack-desc > $PKG/install/slack-desc
|
2010-05-13 00:28:12 +02:00
|
|
|
cat $CWD/doinst.sh > $PKG/install/doinst.sh
|
2010-05-11 20:00:37 +02:00
|
|
|
|
|
|
|
cd $PKG
|
2021-07-04 12:23:38 +02:00
|
|
|
/sbin/makepkg -l y -c n $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.$PKGTYPE
|