#!/bin/sh # Heavily based on the Slackware 12.2 SlackBuild # Home: http://keytouch.sourceforge.net/ # Packager: Davide Locatelli ( l.davide AT tiscali.it ) CWD=`pwd` if [ "$TMP" = "" ]; then TMP=/tmp/tgz fi PKG=$TMP/package-keytouch NAME=keytouch VERSION=2.4.1 TARGET=i486 ARCH=${ARCH:-i486} BUILD=2dav if [ "$ARCH" = "i486" ]; then SLKCFLAGS="-O2 -march=i486 -mtune=i686" elif [ "$ARCH" = "i686" ]; then SLKCFLAGS="-O2 -march=i686 -mtune=i686" elif [ "$ARCH" = "athlonxp" ]; then SLKCFLAGS="-O2 -march=athlon-xp -mtune=athlon-xp" 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-$VERSION.tar.gz cd $NAME-$VERSION chown -R root.root . CFLAGS=$SLKCFLAGS \ ./configure --prefix=/usr \ --sysconfdir=/etc \ $TARGET-slackware-linux make mkdir -p $PKG/etc/{rc.d,init.d} make install DESTDIR=$PKG ( cd keytouch-config CFLAGS=$SLKCFLAGS \ ./configure --prefix=/usr \ --sysconfdir=/etc \ $TARGET-slackware-linux make make install DESTDIR=$PKG ) ( cd keytouch-keyboard CFLAGS=$SLKCFLAGS \ ./configure --prefix=/usr \ --sysconfdir=/etc \ $TARGET-slackware-linux make make install DESTDIR=$PKG ) ( cd $TMP tar xvzf $CWD/keytouch-KMix_plugin-1.0.tar.gz cd KMix-1.0 make install -m755 KMix.so $PKG/usr/lib/keytouch/plugins ) # Hey, we are on Slackware we don't need /etc/init.d rm -rf $PKG/etc/rc.d/* $PKG/etc/init.d install -m755 $CWD/rc.keytouch $PKG/etc/rc.d mkdir -p $PKG/usr/doc/$NAME-$VERSION cp -a AUTHORS COPYING ChangeLog NEWS README \ $PKG/usr/doc/$NAME-$VERSION mkdir -p $PKG/usr/share/applications install -m644 $CWD/keytouch.desktop $PKG/usr/share/applications ( 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 ) #( cd $PKG/usr/man # find . -name "*.?" | xargs gzip -9 #) chown -R root.bin $PKG/usr/bin 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-$VERSION/slack-desc cat $CWD/$NAME.SlackBuild > $PKG/usr/doc/$NAME-$VERSION/$NAME.SlackBuild cd $PKG 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