diff options
Diffstat (limited to 'repo/util/iw/iw.xibuild')
-rw-r--r-- | repo/util/iw/iw.xibuild | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/repo/util/iw/iw.xibuild b/repo/util/iw/iw.xibuild new file mode 100644 index 0000000..212a612 --- /dev/null +++ b/repo/util/iw/iw.xibuild @@ -0,0 +1,22 @@ +#!/bin/sh + +MAKEDEPS="make" +DEPS="libnl" + +PKG_VER=5.16 +SOURCE=https://www.kernel.org/pub/software/network/iw/iw-$PKG_VER.tar.xz +DESC="nl80211 based CLI configuration utility for wireless devices" + +prepare () { + sed -i "/INSTALL.*gz/s/.gz//" Makefile +} + +build () { + make +} + +package () { + make DESTDIR=$PKG_DEST install +} + + |