termux-packages/root-packages/pciutils/build.sh
TacoTheDank a4da4e350c
update several packages and links, and fix some misspellings of "maintainer"
Signed-off-by: TacoTheDank <SkytkRSfan3895@gmail.com>
2022-04-18 14:30:55 +05:30

18 lines
663 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_VERSION=3.6.2
TERMUX_PKG_SRCURL=ftp://atrey.karlin.mff.cuni.cz/pub/linux/pci/pciutils-${TERMUX_PKG_VERSION}.tar.gz
TERMUX_PKG_SHA256=30005e341bb0ffa734174e592dc8f0dd928e1c9368b859715812149ed91d8f93
TERMUX_PKG_BUILD_IN_SRC=yes
termux_step_pre_configure () {
local ARCH=${TERMUX_ARCH}
if [[ ${ARCH} == "arm" ]]; then
ARCH="armv7l"
fi
# ${str^^} returns upper case string
sed -i "s%\@TERMUX_ARCH\@%${ARCH^^}%g" ./lib/config.h
sed -i "s%\@TERMUX_ARCH\@%${ARCH^^}%g" ./lib/config.mk
}