diff options
Diffstat (limited to 'source/n/iw')
-rwxr-xr-x | source/n/iw/iw.SlackBuild | 17 | ||||
-rw-r--r-- | source/n/iw/iw.info | 2 |
2 files changed, 16 insertions, 3 deletions
diff --git a/source/n/iw/iw.SlackBuild b/source/n/iw/iw.SlackBuild index bd78d0e0..10211173 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 diff --git a/source/n/iw/iw.info b/source/n/iw/iw.info index 11c14746..325189b8 100644 --- a/source/n/iw/iw.info +++ b/source/n/iw/iw.info @@ -1,2 +1,2 @@ HOMEPAGE="http://wireless.kernel.org/en/users/Documentation/iw" -DOWNLOAD="http://wireless.kernel.org/download/iw/iw-0.9.11.tar.bz2" +DOWNLOAD="http://wireless.kernel.org/download/iw/iw-3.0.tar.bz2" |