blob: 7059721dd1dba6cf21528466a83cee5fec01cd76 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
|
# Maintainer: Fabio 'Lolix' Loli <fabio.loli@disroot.org> -> https://github.com/FabioLolix
# Contributor: FadeMind <fademind@gmail.com>
pkgname=inxi-git
pkgver=3.3.03.r0.g7ecea586
pkgrel=2
pkgdesc="Full featured CLI system information tool"
arch=(any)
url="https://smxi.org/docs/inxi.htm"
license=(GPL3)
depends=(coreutils pciutils perl procps-ng)
makedepends=(git)
optdepends=(
"bluez-tools: bt-adapter: -E bluetooth data (if no hciconfig)"
"bluez-utils-compat: hciconfig: -E bluetooth HCI data"
"bind: -i wlan IP"
"dmidecode: inxi -M if no sys machine data"
"file: inxi -o unmounted file system"
"freeipmi: ipmi-sensors: -s IPMI sensors"
"hddtemp: inxi -Dx show hdd temp"
"iproute2: inxi -i ip lan"
"ipmitool: -s IPMI sensors"
"kmod: inxi -Ax,-Nx module version"
"lm_sensors: inxi -s sensors output"
"mesa-demos: inxi -G glx info"
"net-tools: inxi -i ip lan-deprecated"
"perl-io-socket-ssl: -U; -w,-W; -i (if dig not installed)"
"perl-cpanel-json-xs: --output json - required for export"
"perl-json-xs: --output json - required for export (legacy)"
"perl-xml-dumper: --output xml - Crude and raw"
"systemd-sysvcompat: inxi -I runlevel"
"sudo: inxi -Dx hddtemp-user;-o file-user"
"tree: --debugger 20,21 /sys tree"
"upower: -sx attached device battery info"
"usbutils: inxi -A usb audio;-N usb networking"
"wmctrl: -S active window manager (not all wm)"
"xorg-xdpyinfo: inxi -G multi screen resolution"
"xorg-xprop: inxi -S desktop data"
"xorg-xrandr: inxi -G single screen resolution"
)
provides=(inxi)
conflicts=(inxi)
source=("git+https://github.com/smxi/inxi.git")
sha256sums=('SKIP')
pkgver() {
cd "$srcdir/${pkgname/-git/}"
git describe --long --tags | sed 's/1-//;s/\([^-]*-g\)/r\1/;s/-/./g'
}
package() {
cd "$srcdir/${pkgname/-git/}"
install -Dm755 "${pkgname/-git/}" "${pkgdir}/usr/bin/${pkgname/-git/}"
install -Dm644 "${pkgname/-git/}.1" "${pkgdir}/usr/share/man/man1/${pkgname/-git/}.1"
}
|