diff options
author | Menno E. Duursma <druiloor@zonnet.nl> | 2010-05-11 14:56:16 +0200 |
---|---|---|
committer | Robby Workman <rworkman@slackbuilds.org> | 2010-05-11 14:56:16 +0200 |
commit | e76ba428a2cf2abb8b3c03c522146beeb536b1c1 (patch) | |
tree | 7c6f1cdf87771f9f8bd87684da1bf2504ed55c3f /libraries/libcap/libcap.SlackBuild | |
parent | 39705f65a6a657639b43c36c9f29087722cce40f (diff) | |
download | slackbuilds-e76ba428a2cf2abb8b3c03c522146beeb536b1c1.tar.gz |
libraries/libcap: Initial import
Diffstat (limited to 'libraries/libcap/libcap.SlackBuild')
-rw-r--r-- | libraries/libcap/libcap.SlackBuild | 70 |
1 files changed, 70 insertions, 0 deletions
diff --git a/libraries/libcap/libcap.SlackBuild b/libraries/libcap/libcap.SlackBuild new file mode 100644 index 0000000000..40ece77170 --- /dev/null +++ b/libraries/libcap/libcap.SlackBuild @@ -0,0 +1,70 @@ +#!/bin/sh + +# Slackware build script for libcap +# Written by Menno Duursma +# Modified by the SlackBuilds.org project + +PRGNAM=libcap +VERSION=1.10 +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 + +# Bail out if we have a problem +set -e + +rm -rf $PKG +mkdir -p $TMP $PKG $OUTPUT +cd $TMP +rm -rf $PRGNAM-$VERSION +tar -xzvf $CWD/$PRGNAM-$VERSION.tar.gz || exit 1 +cd $PRGNAM-$VERSION + +chown -R root:root . +find . -type d | xargs chmod 0755 +find . -type f | xargs chmod go-w + +CFLAGS="$SLKCFLAGS" make || exit 1 +make install FAKEROOT=$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 + gzip -9 $PKG/usr/man/man?/* +fi + +mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION +cp -a README CHANGELOG License pgp.keys.asc doc/capability.notes \ + $PKG/usr/doc/$PRGNAM-$VERSION +cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild + +# Dont overwrite the header, as it may have been edited by the user; instead, +# leave the new copy for the admin to consider +mv $PKG/usr/include/sys/capability.h $PKG/usr/include/sys/capability.h.new + +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 -p $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.tgz + +# Clean up the extra stuff: +if [ "$1" = "--cleanup" ]; then + rm -rf $TMP/$PRGNAM-$VERSION + rm -rf $PKG +fi + |