mirror of
https://github.com/libretro/Lakka-LibreELEC.git
synced 2024-12-02 14:26:47 +00:00
22 lines
757 B
Makefile
22 lines
757 B
Makefile
# SPDX-License-Identifier: GPL-2.0
|
|
# Copyright (C) 2016-present Team LibreELEC (https://libreelec.tv)
|
|
|
|
PKG_NAME="iw"
|
|
PKG_VERSION="5.19"
|
|
PKG_SHA256="f167bbe947dd53bb9ebc0c1dcef5db6ad73ac1d6084f2c6f9376c5c360cc4d4e"
|
|
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"
|
|
}
|
|
|
|
post_makeinstall_target() {
|
|
mkdir -p ${INSTALL}/usr/lib/iw
|
|
cp ${PKG_DIR}/scripts/setregdomain ${INSTALL}/usr/lib/iw
|
|
}
|