#!/bin/sh # Heavily based on the Slackware 12.0 SlackBuild # http://www.unixodbc.org/ # Packager Vincenzi Loris - slacky@slacky.it CWD=`pwd` TMP=${TMP:-/tmp/tgz} PKG=$TMP/package NAME=unixodbc VERSION=2.2.12 CHOST=i486 ARCH=${ARCH:-i486} BUILD=1 rm -rf $PKG mkdir -p $PKG 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 cd $TMP tar xzvf $CWD/unixODBC-$VERSION.tar.gz cd unixODBC-$VERSION chown -R root:root . CFLAGS="$SLKCFLAGS" \ CXXFLAGS="$SLKCFLAGS" \ ./configure --prefix=/usr \ --sysconfdir=/etc \ --x-includes=/usr/X11R6/include \ --x-libraries=/usr/X11R6/lib \ --program-prefix= \ --program-suffix= \ --build=$CHOST-slackware-linux make mkdir -p $PKG/usr/lib cp -a $TMP/$NAME-$VERSION/odbcinstQ/.libs/* $PKG/usr/lib make install DESTDIR=$PKG mkdir -p $PKG/usr/doc/$NAME-$VERSION cp -a AUTHORS COPYING ChangeLog INSTALL README* NEWS $PKG/usr/doc/$NAME-$VERSION 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/slack-desc > $PKG/usr/doc/$NAME-$VERSION/slack-desc cat $CWD/$NAME.TruvaBuild > $PKG/usr/doc/$NAME-$VERSION/$NAME.TruvaBuild 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