mirror of
https://github.com/termux/termux-packages.git
synced 2025-03-03 06:48:20 +00:00
55 lines
1.8 KiB
Bash
55 lines
1.8 KiB
Bash
TERMUX_PKG_HOMEPAGE=https://github.com/thom311/libnl
|
|
TERMUX_PKG_DESCRIPTION="Collection of libraries providing APIs to netlink protocol based Linux kernel interfaces"
|
|
TERMUX_PKG_LICENSE="LGPL-2.1, GPL-2.0"
|
|
TERMUX_PKG_MAINTAINER="@termux"
|
|
TERMUX_PKG_VERSION="3.11.0"
|
|
TERMUX_PKG_SRCURL=https://github.com/thom311/libnl/releases/download/libnl${TERMUX_PKG_VERSION//./_}/libnl-$TERMUX_PKG_VERSION.tar.gz
|
|
TERMUX_PKG_SHA256=2a56e1edefa3e68a7c00879496736fdbf62fc94ed3232c0baba127ecfa76874d
|
|
TERMUX_PKG_AUTO_UPDATE=true
|
|
TERMUX_PKG_UPDATE_VERSION_REGEXP="\d+.\d+.\d+"
|
|
TERMUX_PKG_BREAKS="libnl-dev"
|
|
TERMUX_PKG_REPLACES="libnl-dev"
|
|
TERMUX_PKG_EXTRA_CONFIGURE_ARGS="
|
|
--disable-pthreads
|
|
--enable-cli
|
|
"
|
|
|
|
termux_step_post_get_source() {
|
|
# Do not forget to bump revision of reverse dependencies and rebuild them
|
|
# after RELEASE / SOVERSION is changed.
|
|
local _RELEASE=3
|
|
local _SOVERSION=200
|
|
|
|
for a in MAJOR_VERSION LT_CURRENT LT_AGE; do
|
|
local _${a}=$(sed -En 's/^m4_define\(\[libnl_'"${a,,}"'\],\s*\[([0-9]+).*/\1/p' \
|
|
configure.ac)
|
|
done
|
|
local v=$(( _LT_CURRENT - _LT_AGE ))
|
|
if [ "${_RELEASE}" != "${_MAJOR_VERSION}" ] || \
|
|
[ ! "${_LT_CURRENT}" ] || [ "${_SOVERSION}" != "${v}" ]; then
|
|
termux_error_exit "SOVERSION guard check failed."
|
|
fi
|
|
}
|
|
|
|
termux_step_pre_configure() {
|
|
local _inc="$TERMUX_PKG_SRCDIR/_getsubopt/include"
|
|
rm -rf "${_inc}"
|
|
mkdir -p "${_inc}"
|
|
cp "$TERMUX_PKG_BUILDER_DIR/getsubopt.h" "${_inc}"
|
|
|
|
CPPFLAGS+=" -I${_inc}"
|
|
|
|
local _lib="$TERMUX_PKG_BUILDDIR/_getsubopt/lib"
|
|
rm -rf "${_lib}"
|
|
mkdir -p "${_lib}"
|
|
pushd "${_lib}"/..
|
|
$CC $CFLAGS $CPPFLAGS "$TERMUX_PKG_BUILDER_DIR/getsubopt.c" \
|
|
-fvisibility=hidden -c -o ./getsubopt.o
|
|
$AR cru "${_lib}"/libgetsubopt.a ./getsubopt.o
|
|
popd
|
|
|
|
LDFLAGS+=" -L${_lib} -l:libgetsubopt.a"
|
|
|
|
CFLAGS+=" -Dsockaddr_storage=__kernel_sockaddr_storage"
|
|
}
|