diff options
author | B. Watson <yalhcru@gmail.com> | 2014-08-06 18:39:25 +0700 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2014-08-06 18:39:25 +0700 |
commit | 7408017fa321eff3a96f2ad339004af5a65b3d99 (patch) | |
tree | fdb713335abd5f73e9a0b21aede2069a4e628192 /system/arj/arj.SlackBuild | |
parent | 6f3bd06d133b32a5462349f9db83d1846666598c (diff) | |
download | slackbuilds-7408017fa321eff3a96f2ad339004af5a65b3d99.tar.gz |
system/arj: Added (arj archiver).
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'system/arj/arj.SlackBuild')
-rw-r--r-- | system/arj/arj.SlackBuild | 98 |
1 files changed, 98 insertions, 0 deletions
diff --git a/system/arj/arj.SlackBuild b/system/arj/arj.SlackBuild new file mode 100644 index 0000000000..49e052d924 --- /dev/null +++ b/system/arj/arj.SlackBuild @@ -0,0 +1,98 @@ +#!/bin/sh + +# 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. + +PRGNAM=arj +VERSION=${VERSION:-3.10.22} +BUILD=${BUILD:-1} +TAG=${TAG:-_SBo} + +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 $PRGNAM-$VERSION +tar xvf $CWD/$PRGNAM-$VERSION.tar.gz +cd $PRGNAM-$VERSION +chown -R root:root . +find -L . \ + \( -perm 777 -o -perm 775 -o -perm 750 -o -perm 711 -o -perm 555 \ + -o -perm 511 \) -exec chmod 755 {} \; -o \ + \( -perm 666 -o -perm 664 -o -perm 640 -o -perm 600 -o -perm 444 \ + -o -perm 440 -o -perm 400 \) -exec chmod 644 {} \; + +# 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 +# on 64-bit systems. The SBo_integrity_64bit.patch is my own, it fixes +# "arj i" on 64-bit (and I've sent it to the debian maintainer as well). + +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 +/sbin/makepkg -l y -c n $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.${PKGTYPE:-tgz} |