#!/bin/sh # Written by Thomas Bourdon # Copyright: See COPYING file at . # Build infos PRGNAM=rxvt-unicode-terminfo VERSION=${VERSION:-9.26} BUILD=${BUILD:-1} TAG=${TAG:-_SBo} ARCH=noarch CWD=$(pwd) TMP=${TMP:-/tmp/SBo} PKG=$TMP/package-$PRGNAM OUTPUT=${OUTPUT:-/tmp} # Exit on most errors set -e # Extract the software rm -rf $PKG mkdir -p $TMP $PKG $OUTPUT cd $TMP rm -rf rxvt-unicode-$VERSION tar xvf $CWD/rxvt-unicode-$VERSION.tar.?z* cd rxvt-unicode-$VERSION chown -R root:root . find . \ \( -perm 777 -o -perm 775 -o -perm 711 -o -perm 555 -o -perm 511 \) \ -exec chmod 755 {} + -o \ \( -perm 666 -o -perm 664 -o -perm 600 -o -perm 444 -o -perm 440 -o -perm 400 \) \ -exec chmod 644 {} + # Build the software mkdir -p $PKG/usr/share/terminfo tic -o $PKG/usr/share/terminfo doc/etc/rxvt-unicode.terminfo # Copy program documentation into the package mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION cp -a \ COPYING Changes INSTALL MANIFEST README.FAQ README.configure \ $PKG/usr/doc/$PRGNAM-$VERSION cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild # Copy the slack-desc into ./install mkdir -p $PKG/install cat $CWD/slack-desc > $PKG/install/slack-desc # Make the package cd $PKG /sbin/makepkg -l y -c n $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.${PKGTYPE:-tgz}