2023-01-12 19:41:32 +01:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
# Slackware build script for mcomix
|
|
|
|
|
|
|
|
# Written by B. Watson (urchlay@slackware.uk)
|
|
|
|
|
|
|
|
# Licensed under the WTFPL. See http://www.wtfpl.net/txt/copying/ for details.
|
|
|
|
|
2024-02-07 08:08:41 +01:00
|
|
|
# 20240207 bkw: update for v3.1.0.
|
2023-11-24 11:18:56 +01:00
|
|
|
# 20231124 bkw: update for v3.0.0.
|
2023-09-05 22:04:15 +02:00
|
|
|
# 20230905 bkw: update for v2.3.0
|
|
|
|
# 20230822 bkw: update for v2.2.1.
|
2023-06-25 08:50:01 +02:00
|
|
|
# 20230625 bkw: update for v2.1.1.
|
2023-09-05 22:04:15 +02:00
|
|
|
|
2023-06-25 08:50:01 +02:00
|
|
|
# Note to self: it would be possible to use bsdtar in place of unrar
|
|
|
|
# and p7zip, but it would require too much patching. Better to talk
|
|
|
|
# upstream into adding it as an option.
|
|
|
|
|
2023-01-12 19:41:32 +01:00
|
|
|
# 20230111 bkw: This is an all-new SlackBuild for mcomix. We removed
|
|
|
|
# mcomix from SBo in May of 2020 because it needed python2 libraries
|
|
|
|
# that no longer existed in Slackware. It was replaced with mcomix3,
|
|
|
|
# a python3 fork of mcomix. Since then, the original mcomix has been
|
|
|
|
# ported to python3, and mcomix3 development has ended.
|
|
|
|
|
|
|
|
cd $(dirname $0) ; CWD=$(pwd)
|
|
|
|
|
|
|
|
PRGNAM=mcomix
|
2024-02-07 08:08:41 +01:00
|
|
|
VERSION=${VERSION:-3.1.0}
|
2023-01-12 19:41:32 +01:00
|
|
|
BUILD=${BUILD:-1}
|
|
|
|
TAG=${TAG:-_SBo}
|
|
|
|
PKGTYPE=${PKGTYPE:-tgz}
|
|
|
|
|
|
|
|
if [ -z "$ARCH" ]; then
|
|
|
|
case "$( uname -m )" in
|
|
|
|
i?86) ARCH=i586 ;;
|
|
|
|
arm*) ARCH=arm ;;
|
|
|
|
*) ARCH=$( uname -m ) ;;
|
|
|
|
esac
|
|
|
|
fi
|
|
|
|
|
|
|
|
if [ ! -z "${PRINT_PACKAGE_NAME}" ]; then
|
|
|
|
echo "$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.$PKGTYPE"
|
|
|
|
exit 0
|
|
|
|
fi
|
|
|
|
|
|
|
|
TMP=${TMP:-/tmp/SBo}
|
|
|
|
PKG=$TMP/package-$PRGNAM
|
|
|
|
OUTPUT=${OUTPUT:-/tmp}
|
|
|
|
|
|
|
|
# No need for SLKCFLAGS (no C code here). No LIBDIRSUFFIX either,
|
|
|
|
# setup.py is smart enough to choose lib or lib64 as needed.
|
|
|
|
|
|
|
|
set -e
|
|
|
|
|
|
|
|
rm -rf $PKG
|
|
|
|
mkdir -p $TMP $PKG $OUTPUT
|
|
|
|
cd $TMP
|
|
|
|
rm -rf $PRGNAM-$VERSION
|
|
|
|
tar xvf $CWD/$PRGNAM-$VERSION.tar.gz
|
|
|
|
cd $PRGNAM-$VERSION
|
|
|
|
chown -R root:root .
|
|
|
|
# Bad tarball permissions (every file is +x), please do not "fix" this
|
|
|
|
# by reverting to template.
|
2023-09-05 22:04:15 +02:00
|
|
|
find . -type f -a -exec chmod 644 {} + -o \
|
|
|
|
-type d -a -exec chmod 755 {} +
|
2023-01-12 19:41:32 +01:00
|
|
|
|
2024-03-31 19:33:41 +02:00
|
|
|
PYVER=$(python3 -c 'import sys; print("%d.%d" % sys.version_info[:2])')
|
|
|
|
export PYTHONPATH=/opt/python$PYVER/site-packages
|
2023-11-24 11:18:56 +01:00
|
|
|
python3 -m build --wheel --no-isolation
|
|
|
|
python3 -m installer --destdir "$PKG" dist/*.whl
|
|
|
|
|
|
|
|
# 20231124 bkw: 3.0.0 ships this stuff but doesn't install it like
|
|
|
|
# the 2.x series did.
|
|
|
|
mv share/man man
|
|
|
|
cp -a share man $PKG/usr
|
2023-01-12 19:41:32 +01:00
|
|
|
|
2023-09-05 22:04:15 +02:00
|
|
|
# 20230905 bkw: 2.2.1 has good icons. The ones in 2.3.0 are wrong-sized,
|
|
|
|
# e.g. the "32x32" one is actually 32x24. So I made a tarball of the old
|
|
|
|
# icons... which didn't include the giant 256x256 one.
|
2023-11-24 11:18:56 +01:00
|
|
|
# 20231124 bkw: 3.0.0 icons are still b0rked.
|
2023-09-05 22:04:15 +02:00
|
|
|
rm -rf $PKG/usr/share/icons/hicolor/256x256
|
|
|
|
( cd $PKG ; tar xvf $CWD/mcomix-good-icons.tar.xz )
|
|
|
|
mkdir -p $PKG/usr/share/pixmaps
|
|
|
|
|
|
|
|
# 20230905 bkw: old-style icon.
|
|
|
|
ln -s ../icons/hicolor/48x48/apps/$PRGNAM.png $PKG/usr/share/pixmaps/$PRGNAM.png
|
|
|
|
|
2023-01-12 19:41:32 +01:00
|
|
|
PKGDOC=$PKG/usr/doc/$PRGNAM-$VERSION
|
|
|
|
mkdir -p $PKGDOC
|
2023-11-24 11:18:56 +01:00
|
|
|
cp -a COPYING README* ChangeLog* $PKGDOC
|
2023-01-12 19:41:32 +01:00
|
|
|
cat $CWD/$PRGNAM.SlackBuild > $PKGDOC/$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
|