diff options
author | Menno E. Duursma <druiloor@zonnet.nl> | 2010-05-11 14:05:53 +0200 |
---|---|---|
committer | Erik Hanson <erik@slackbuilds.org> | 2010-05-11 14:05:53 +0200 |
commit | 529ccd9e1f5ab98bfca9c2a48347333c158d06ba (patch) | |
tree | bf2cdf991f8a95f6ff88762890e2c067a98ee7cf /development/splint/splint.SlackBuild | |
parent | 4521da10816ef243a80db8748aebb82b9d3e1480 (diff) | |
download | slackbuilds-529ccd9e1f5ab98bfca9c2a48347333c158d06ba.tar.gz |
development/splint: Initial import
Diffstat (limited to 'development/splint/splint.SlackBuild')
-rw-r--r-- | development/splint/splint.SlackBuild | 74 |
1 files changed, 74 insertions, 0 deletions
diff --git a/development/splint/splint.SlackBuild b/development/splint/splint.SlackBuild new file mode 100644 index 0000000000..09490ffa01 --- /dev/null +++ b/development/splint/splint.SlackBuild @@ -0,0 +1,74 @@ +#!/bin/sh + +# Slackware build script for splint +# Written by Menno E. Duursma <druiloor@zonnet.nl> +# Modified by the SlackBuilds.org project + +PRGNAM=splint +VERSION=3.1.1 +ARCH=${ARCH:-i486} +BUILD=${BUILD:-1} +TAG=${TAG:-_SBo} +CWD=`pwd` +TMP=${TMP:-/tmp/SBo} +PKG=$TMP/package-$PRGNAM +OUTPUT=${OUTPUT:-/tmp} + +if [ "$ARCH" = "i486" ]; then + SLKCFLAGS="-O2 -march=i486 -mtune=i686" +elif [ "$ARCH" = "i686" ]; then + SLKCFLAGS="-O2 -march=i686 -mtune=i686" +fi + +rm -rf $PKG +mkdir -p $TMP $PKG $OUTPUT +cd $TMP +rm -rf $PRGNAM-$VERSION +tar xzvf $CWD/$PRGNAM-$VERSION.src.tgz || exit 1 +cd $PRGNAM-$VERSION || exit 1 +chown -R root:root . +chmod -R u+w,go+r-w,a-s . + +CFLAGS="$SLKCFLAGS" \ +CXXFLAGS="$SLKCFLAGS" \ +./configure \ + --prefix=/usr \ + --localstatedir=/var \ + --sysconfdir=/etc \ + || exit 1 + +make || exit 1 +make install DESTDIR=$PKG || exit 1 + +( 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 +) + +if [ -d $PKG/usr/man ]; then +( cd $PKG/usr/man + find . -type f -exec gzip -9 {} \; + for i in `find . -type l` ; do ln -s $( readlink $i ).gz $i.gz ; rm $i ; done +) +fi + +if [ -d $PKG/usr/info ]; then + gzip -9 $PKG/usr/info/*.info + rm -f $PKG/usr/info/dir +fi + +mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION +cp README $PKG/usr/doc/$PRGNAM-$VERSION +cd doc +cp manual.pdf $PKG/usr/doc/$PRGNAM-$VERSION +cd html +mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION/html +cp *.htm *.html $PKG/usr/doc/$PRGNAM-$VERSION/html +cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild + +mkdir -p $PKG/install +cat $CWD/slack-desc > $PKG/install/slack-desc +cat $CWD/doinst.sh > $PKG/install/doinst.sh + +cd $PKG +/sbin/makepkg -l y -c n $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.tgz |