#!/bin/sh #Heavily based on the Slackware 13 SlackBuild #NVClock is a small utility that allows users to overclock NVIDIA #based video cards running on the Linux platform. The original code #used in building this application was borrowed from the nvcs #application. #That code has been extensively reworked in order to make the #utility much more user friendly and to make it play nice with #current distros and drivers. #http://www.linuxhardware.org/nvclock/ #Written by alphamanitine for www.slacky.eu CWD=`pwd` TMP=${TMP:-/tmp/txz} PKG=$TMP/package-nvclock NAME=nvclock VERSION=0.8b4 ARCH=i486 BUILD=3al if [ "$ARCH" = "i386" ]; then SLKFLAGS="-O2 -march=i386 -mcpu=i686" elif [ "$ARCH" = "i486" ]; then SLKFLAGS="-O2 -march=i486 -mcpu=i686" elif [ "$ARCH" = "i686" ]; then SLKFLAGS="-O2 -march=i686 -mcpu=i686" fi if [ ! -d $TMP ]; then mkdir -p $TMP fi if [ ! -d $PKG ]; then mkdir -p $PKG fi cd $TMP tar zxvf $CWD/$NAME$VERSION.tar.gz cd $NAME$VERSION chown root:root . find . -perm 777 -exec chmod 755 {} \; find . -perm 775 -exec chmod 755 {} \; find . -perm 555 -exec chmod 755 {} \; find . -perm 664 -exec chmod 644 {} \; find . -perm 666 -exec chmod 644 {} \; find . -perm 444 -exec chmod 644 {} \; CFLAGS="$SLKFLAGS" \ CXXFLAGS="$SLKFLAGS" \ ./configure --prefix=/usr \ --mandir=/usr/man \ --enable-qt \ --program-prefix= \ --program-suffix= \ --build=i486-slackware-linux make make prefix=$PKG/usr install mkdir -p $PKG/usr/doc/$NAME-$VERSION cp -a ABOUT AUTHORS ChangeLog COPYING FAQ INSTALL NEWS README $PKG/usr/doc/$NAME-$VERSION rm -R $PKG/usr/share/doc ( 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 ) gzip -9 $PKG/usr/man/*/* 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.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.txz if [ "$1" = "--cleanup" ]; then rm -rf $TMP fi