mirror of
https://github.com/termux-pacman/termux-packages.git
synced 2026-02-11 20:30:53 +00:00
22 lines
998 B
Bash
22 lines
998 B
Bash
TERMUX_PKG_HOMEPAGE=https://smxi.org/site/about.htm#inxi
|
|
TERMUX_PKG_DESCRIPTION="Full featured CLI system information tool"
|
|
TERMUX_PKG_LICENSE="GPL-3.0"
|
|
TERMUX_PKG_MAINTAINER="@termux"
|
|
TERMUX_PKG_VERSION="3.3.40-1"
|
|
TERMUX_PKG_SRCURL=https://codeberg.org/smxi/inxi/archive/${TERMUX_PKG_VERSION}.tar.gz
|
|
TERMUX_PKG_SHA256=b3f307f06c3b969bd65151d39729b97a767af42fddd3d9bab971135c0e7cd873
|
|
# NOTE: auto-update first checks whether the latest version matches this regex and then
|
|
# replaces the last `.` with '-'. Thus, it shouldn't update to wrong version.
|
|
TERMUX_PKG_UPDATE_VERSION_REGEXP="\d+\.\d+\.\d+(-|\.)\d+"
|
|
# Sometimes repology returns ds.ds.ds.ds instead of ds.ds.ds-ds, fix that:
|
|
TERMUX_PKG_UPDATE_VERSION_SED_REGEXP="s/\.([0-9]+)$/-\1/"
|
|
TERMUX_PKG_AUTO_UPDATE=true
|
|
TERMUX_PKG_DEPENDS="perl"
|
|
TERMUX_PKG_BUILD_IN_SRC=true
|
|
TERMUX_PKG_PLATFORM_INDEPENDENT=true
|
|
|
|
termux_step_make_install() {
|
|
install -Dm700 -t "$TERMUX_PREFIX/bin/" inxi
|
|
install -Dm600 -t "$TERMUX_PREFIX/share/man/man1/" inxi.1
|
|
}
|