blob: 0cf5a1eff28e99e9bb3e00f8ff248d760ba4de85 (
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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
|
# Maintainer: Thor K. H. <thor alfakrøll roht dott no>
# Co-Maintainer: Mubashshir <ahmubashshir@gmail.com>
# Contributor: Tim Besard <tim $dot$ besard $at$ gmail $dot$ com>
# Contributor: Jelle van der Waa <jellevdwaa @ gmail.com>
# Contributor: Pieter Kokx <pieter $at$ kokx $dot$ .nl>
_tag=latest
pkgname=whatpulse
pkgver=5.4
pkgrel=1
pkgdesc="Measures your keyboard, mouse and application usage, network traffic and uptime."
arch=('x86_64')
url=http://www.whatpulse.org
license=(custom:whatpulse_tos)
depends=(
freetype2 xcb-util-image libxkbcommon libxkbcommon-x11 xcb-util-renderutil gcc-libs dbus krb5
xcb-util-wm glib2 libx11 fontconfig libglvnd xcb-util-keysyms openssl-1.1 glibc libxcb zlib
hicolor-icon-theme
)
makedepends=(
imagemagick
patchelf
)
optdepends=(
'libpcap: for capturing network statistics'
)
source=(
'whatpulse.desktop'
LICENSE
)
source_x86_64=("${pkgname}-${pkgver}-amd64.AppImage::https://releases.whatpulse.org/${_tag:-$pkgver}/linux/whatpulse-linux-${_tag:-$pkgver}_amd64.AppImage")
sha256sums=('5a4a6676a6b513824eeac8a2accd6de9e8bd2bc11b3e2967fa2b2a18d29fa35d'
'cfea47f15bb3ba2494a7b1d50367139dc12709fc1e8ba0b25d86ee5f09748619')
sha256sums_x86_64=('533b1b28120a25f3db625425f42dfbc559180a3dfb4e1f9c6156cf27b4a646f4')
_extract() {
./"${pkgname}-${pkgver}-amd64.AppImage" --appimage-extract "$1"
}
prepare() {
chmod +x "${pkgname}-${pkgver}-amd64.AppImage"
_extract usr/bin/whatpulse
_extract usr/lib
_extract usr/plugins
_extract 'whatpulse.png'
_extract 'usr/share/icons/hicolor/512x512/apps/whatpulse.png'
ln -sf squashfs-root sfs
find sfs/usr/lib -type f -not -name 'libQt6*.so.*' -not -name 'libicu*.so.*' -delete
find sfs/usr/plugins -type f -name 'libqsql*.so' -not -name 'libqsqlite.so' -delete
find sfs/usr/{bin,lib,plugins} -type f -not -name 'libicudata.so.*' \
-exec patchelf --set-rpath '/usr/lib/whatpulse/lib:/usr/lib' '{}' +
}
package() {
install -Dm755 sfs/usr/bin/whatpulse "${pkgdir}/usr/bin/whatpulse"
# Qt6
find sfs/usr/lib -type f -exec install -Dm644 -t "${pkgdir}/usr/lib/whatpulse/lib" '{}' +
# Qt6 plugins
find sfs/usr/plugins -mindepth 1 -type d \
-not \( -name imageformats -or -name xcbglintegrations \) -printf '%f\0' |
xargs -0I '<>' find 'sfs/usr/plugins/<>' -type f \
-exec install -Dm644 -t "${pkgdir}/usr/lib/whatpulse/plugins/<>" '{}' +
install -Dm 644 whatpulse.desktop "${pkgdir}/usr/share/applications/whatpulse.desktop"
install -Dm 644 LICENSE "${pkgdir}/usr/share/licenses/$pkgname/LICENSE"
# Set capabilities so that whatpulse can monitor network traffic
# Disable network monitor caps to prevent segfaults
# setcap cap_net_raw,cap_net_admin=eip "${pkgdir}/usr/bin/whatpulse"
# Generate and install icons
for size in 16 20 22 24 28 32 36 44 48 64 72 96 128 150 192 256 310 384 512 1024; do
install -dm755 "${pkgdir}/usr/share/icons/hicolor/${size}x${size}/apps"
convert \
+gravity -crop 615x680+0+0 +repage \
-resize "${size}x${size}" -background none \
-gravity center -extent "${size}x${size}" \
sfs/whatpulse.png xc:"#656565" -channel RGB -clut \
"${pkgdir}/usr/share/icons/hicolor/${size}x${size}/apps/whatpulse.png"
done
}
|