#!/bin/sh # http://hpinkjet.sourceforge.net/ # Heavily based on the Slackware 11.0 SlackBuild # Packager Vincenzi Loris - slacky@slacky.it CWD=`pwd` TMP=${TMP:-/tmp/tgz} PKG=$TMP/package-hplip NAME=hplip VERSION=0.9.10.2 CHOST=i486 ARCH=${ARCH:-i486} BUILD=2sl if [ "$ARCH" = "i386" ]; then SLKCFLAGS="-O2 -march=i386 -mcpu=i686" elif [ "$ARCH" = "i486" ]; then SLKCFLAGS="-O2 -march=i486 -mtune=i686" elif [ "$ARCH" = "i686" ]; then SLKCFLAGS="-O2" elif [ "$ARCH" = "s390" ]; then SLKCFLAGS="-O2" elif [ "$ARCH" = "x86_64" ]; then SLKCFLAGS="-O2" fi if [ ! -d $TMP ]; then mkdir -p $TMP fi if [ ! -d $PKG ]; then mkdir -p $PKG fi cd $TMP tar xzvf $CWD/$NAME-0.9.10.tar.gz cd $NAME-0.9.10 zcat $CWD/hplip-0.9.10-2.patch.gz | patch -p1 -E --backup --verbose chown -R root:root . CFLAGS="$SLKCFLAGS" \ ./configure --prefix=/usr \ --with-cups-backend=/usr/lib/cups \ --with-sane-backends=/usr/lib/sane \ --with-sane-etc=/etc/sane.d \ --disable-network-build \ --program-prefix="" \ --program-suffix="" \ $CHOST-slackware-linux make make install DESTDIR=$PKG mv $PKG/usr/share/doc $PKG/usr cd $PKG find . | xargs file | grep "executable" | grep ELF | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null find . | xargs file | grep "shared object" | grep ELF | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null mkdir -p $PKG/install cat $CWD/slack-desc > $PKG/install/slack-desc cat $CWD/doinst.sh > $PKG/install/doinst.sh cat $CWD/slack-desc > $PKG/usr/doc/$NAME-0.9.10/slack-desc cat $CWD/$NAME.SlackBuild > $PKG/usr/doc/$NAME-0.9.10/$NAME.SlackBuild cp $CWD/mini-HOWTO $PKG/usr/doc/$NAME-0.9.10 rm $PKG/etc/sane.d/dll.conf cat $CWD/dll.conf > $PKG/etc/sane.d/dll.conf.new mv $PKG/etc/hp/hplip.conf $PKG/etc/hp/hplip.conf.new mkdir -p $PKG/etc/rc.d cp -p $CWD/rc.hplip $PKG/etc/rc.d rm -rf $PKG/etc/init.d requiredbuilder -v -y -s $CWD $PKG makepkg -l y -c n $CWD/$NAME-$VERSION-$ARCH-$BUILD.tgz if [ "$1" = "--cleanup" ]; then rm -rf $TMP fi