diff options
Diffstat (limited to 'source/n/iw/iw.SlackBuild')
-rwxr-xr-x | source/n/iw/iw.SlackBuild | 17 |
1 files changed, 15 insertions, 2 deletions
diff --git a/source/n/iw/iw.SlackBuild b/source/n/iw/iw.SlackBuild index bd78d0e0c..10211173c 100755 --- a/source/n/iw/iw.SlackBuild +++ b/source/n/iw/iw.SlackBuild @@ -36,6 +36,8 @@ if [ -z "$ARCH" ]; then esac fi +NUMJOBS=${NUMJOBS:-" -j7 "} + CWD=$(pwd) TMP=${TMP:-/tmp} PKG=$TMP/package-$PKGNAM @@ -63,11 +65,14 @@ find . \ \( -perm 666 -o -perm 664 -o -perm 600 -o -perm 444 -o -perm 440 -o -perm 400 \) \ -exec chmod 644 {} \; -make CFLAGS="$SLKCFLAGS" +make clean +# Providing external CFLAGS breaks building if libnl > 1 is installed +#make CFLAGS="$SLKCFLAGS" || exit 1 +make $NUMJOBS || make || exit 1 make install \ BINDIR=/usr/sbin \ MANDIR=/usr/man \ - DESTDIR=$PKG + DESTDIR=$PKG || exit 1 ( cd $PKG find . | xargs file | grep "executable" | grep ELF | cut -f 1 -d : | \ @@ -81,6 +86,14 @@ cp -a \ COPYING* README* \ $PKG/usr/doc/$PKGNAM-$VERSION +# If there's a ChangeLog, installing at least part of the recent history +# is useful, but don't let it get totally out of control: +if [ -r ChangeLog ]; then + DOCSDIR=$(echo $PKG/usr/doc/*-$VERSION) + cat ChangeLog | head -n 1000 > $DOCSDIR/ChangeLog + touch -r ChangeLog $DOCSDIR/ChangeLog +fi + mkdir -p $PKG/install cat $CWD/slack-desc > $PKG/install/slack-desc |