mirror of
https://github.com/LibreELEC/LibreELEC.tv
synced 2025-09-24 19:46:01 +07:00
21 lines
660 B
Makefile
21 lines
660 B
Makefile
# SPDX-License-Identifier: GPL-2.0
|
|
# Copyright (C) 2016-present Team LibreELEC (https://libreelec.tv)
|
|
|
|
PKG_NAME="iw"
|
|
PKG_VERSION="4.14"
|
|
PKG_SHA256="f01671c0074bfdec082a884057edba1b9efd35c89eda554638496f03b769ad89"
|
|
PKG_LICENSE="PUBLIC_DOMAIN"
|
|
PKG_SITE="http://wireless.kernel.org/en/users/Documentation/iw"
|
|
PKG_URL="https://www.kernel.org/pub/software/network/$PKG_NAME/$PKG_NAME-$PKG_VERSION.tar.xz"
|
|
PKG_DEPENDS_TARGET="toolchain libnl"
|
|
PKG_LONGDESC="A new nl80211 based CLI configuration utility for wireless devices."
|
|
# iw fails at runtime with lto enabled
|
|
|
|
pre_configure_target() {
|
|
export LDFLAGS="$LDFLAGS -pthread"
|
|
}
|
|
|
|
makeinstall_target() {
|
|
: # meh
|
|
}
|