2021-07-03 19:48:15 +02:00
|
|
|
#!/bin/bash
|
2014-08-06 13:39:25 +02:00
|
|
|
|
|
|
|
# Slackware build script for arj
|
|
|
|
|
|
|
|
# Written by B. Watson (yalhcru@gmail.com)
|
|
|
|
|
|
|
|
# Licensed under the WTFPL. See http://www.wtfpl.net/txt/copying/ for details.
|
|
|
|
|
2015-04-07 14:58:35 +02:00
|
|
|
# 20150406 bkw: security vulns in arj!
|
|
|
|
# http://www.securityfocus.com/archive/1/535190
|
|
|
|
# Already patched in debian, add their patches here.
|
|
|
|
|
2021-07-04 11:41:06 +02:00
|
|
|
cd $(dirname $0) ; CWD=$(pwd)
|
|
|
|
|
2014-08-06 13:39:25 +02:00
|
|
|
PRGNAM=arj
|
|
|
|
VERSION=${VERSION:-3.10.22}
|
2015-04-07 14:58:35 +02:00
|
|
|
BUILD=${BUILD:-2}
|
2014-08-06 13:39:25 +02:00
|
|
|
TAG=${TAG:-_SBo}
|
2021-07-04 12:23:38 +02:00
|
|
|
PKGTYPE=${PKGTYPE:-tgz}
|
2014-08-06 13:39:25 +02:00
|
|
|
|
|
|
|
if [ -z "$ARCH" ]; then
|
|
|
|
case "$( uname -m )" in
|
2016-08-19 11:00:24 +02:00
|
|
|
i?86) ARCH=i586 ;;
|
2014-08-06 13:39:25 +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
|
|
|
|
|
2014-08-06 13:39:25 +02:00
|
|
|
TMP=${TMP:-/tmp/SBo}
|
|
|
|
PKG=$TMP/package-$PRGNAM
|
|
|
|
OUTPUT=${OUTPUT:-/tmp}
|
|
|
|
|
2016-08-19 11:00:24 +02:00
|
|
|
if [ "$ARCH" = "i586" ]; then
|
|
|
|
SLKCFLAGS="-O2 -march=i586 -mtune=i686"
|
2014-08-06 13:39:25 +02:00
|
|
|
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 $PRGNAM-$VERSION
|
|
|
|
tar xvf $CWD/$PRGNAM-$VERSION.tar.gz
|
|
|
|
cd $PRGNAM-$VERSION
|
|
|
|
chown -R root:root .
|
2021-08-27 21:33:49 +02:00
|
|
|
find -L . -perm /111 -a \! -perm 755 -a -exec chmod 755 {} \+ -o \
|
|
|
|
\! -perm /111 -a \! -perm 644 -a -exec chmod 644 {} \+
|
2014-08-06 13:39:25 +02:00
|
|
|
|
|
|
|
# Use Debian's patches. See https://packages.debian.org/sid/arj. These are
|
|
|
|
# needed to get the source to build on modern systems, and work correctly
|
2015-04-07 14:58:35 +02:00
|
|
|
# on 64-bit systems.
|
2014-08-06 13:39:25 +02:00
|
|
|
for i in $( cat $CWD/patches/series ); do
|
|
|
|
patch -p1 < $CWD/patches/$i
|
|
|
|
done
|
|
|
|
|
|
|
|
# Truly archaic autoconf stuff. The funkiness with config.sub is meant
|
|
|
|
# to deal with the unlikely situation that multiple automake versions
|
|
|
|
# are installed.
|
|
|
|
cd gnu
|
|
|
|
cp $( ls /usr/share/automake-*/config.sub | head -1 ) .
|
|
|
|
autoreconf -if || true # exits with error, generates configure anyway
|
|
|
|
|
|
|
|
CFLAGS="-D_UNIX $SLKCFLAGS" \
|
|
|
|
CXXFLAGS="-D_UNIX $SLKCFLAGS" \
|
|
|
|
./configure \
|
|
|
|
--prefix=/usr \
|
|
|
|
--libdir=/usr/lib${LIBDIRSUFFIX} \
|
|
|
|
--sysconfdir=/etc \
|
|
|
|
--localstatedir=/var \
|
|
|
|
--mandir=/usr/man \
|
|
|
|
--docdir=/usr/doc/$PRGNAM-$VERSION \
|
|
|
|
--build=$ARCH-slackware-linux
|
|
|
|
|
|
|
|
cd -
|
|
|
|
|
|
|
|
make BUILD_STRIP=1
|
|
|
|
make install DESTDIR=$PKG
|
|
|
|
|
|
|
|
gzip -9 $PKG/usr/man/man1/*.1
|
|
|
|
|
|
|
|
mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION
|
|
|
|
cp -a ChangeLog doc/* $PKG/usr/doc/$PRGNAM-$VERSION
|
|
|
|
cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild
|
|
|
|
|
|
|
|
mkdir -p $PKG/install
|
|
|
|
cat $CWD/slack-desc > $PKG/install/slack-desc
|
|
|
|
|
|
|
|
cd $PKG
|
2021-07-04 12:23:38 +02:00
|
|
|
/sbin/makepkg -l y -c n $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.$PKGTYPE
|