mirror of
https://github.com/termux-pacman/termux-packages.git
synced 2026-02-05 01:22:23 +00:00
32 lines
1021 B
Bash
32 lines
1021 B
Bash
TERMUX_PKG_HOMEPAGE=https://mj.ucw.cz/sw/pciutils/
|
|
TERMUX_PKG_DESCRIPTION="a collection of programs for inspecting and manipulating configuration of PCI devices"
|
|
TERMUX_PKG_LICENSE="GPL-2.0"
|
|
TERMUX_PKG_MAINTAINER="@termux"
|
|
TERMUX_PKG_VERSION="3.14.0"
|
|
TERMUX_PKG_SRCURL=https://mj.ucw.cz/download/linux/pci/pciutils-${TERMUX_PKG_VERSION}.tar.gz
|
|
TERMUX_PKG_SHA256=e31c79722dbbe9d2906b92996ce295268e54d4342fefe3ff476caa613e51be2a
|
|
TERMUX_PKG_AUTO_UPDATE=true
|
|
TERMUX_PKG_DEPENDS="libandroid-glob, zlib"
|
|
TERMUX_PKG_BUILD_IN_SRC=true
|
|
|
|
termux_step_pre_configure() {
|
|
LDFLAGS+=" -landroid-glob"
|
|
|
|
# ${str@U} returns upper case string
|
|
local _ARCH=${TERMUX_ARCH@U}
|
|
if [[ ${_ARCH} == "ARM" ]]; then
|
|
_ARCH="ARMV7L"
|
|
fi
|
|
|
|
local f
|
|
for f in config.h config.mk; do
|
|
local in=$TERMUX_PKG_BUILDER_DIR/${f}.in
|
|
local out=$TERMUX_PKG_SRCDIR/lib/${f}
|
|
sed \
|
|
-e 's|@TERMUX_PKG_VERSION@|'"$TERMUX_PKG_VERSION"'|g' \
|
|
-e 's|@TERMUX_ARCH@|'"${_ARCH}"'|g' \
|
|
-e 's|@TERMUX_PREFIX@|'"${TERMUX_PREFIX}"'|g' \
|
|
${in} > ${out}
|
|
done
|
|
}
|