blob: 3a9bd14ca38e8f30ac9853312f6c5f083dbcfac7 (
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
|
# Maintainer: Erik Bjäreholt <erik@bjareho.lt>
# Maintainer: Johan Bjäreholt <johan@bjareho.lt>
# PRs welcome at: https://github.com/ActivityWatch/aur-activitywatch-bin
pkgname=activitywatch-bin
pkgver='0.13.2'
pkgrel=1
epoch=
pkgdesc="Track how you spend time on your computer. Simple, extensible, no third parties."
arch=('x86_64')
url="https://github.com/ActivityWatch/activitywatch"
license=('MPL2')
provides=("activitywatch")
conflicts=("activitywatch")
depends=(
#'qt5-base'
#'qt5-svg'
#'gtk3'
#'openssl-1.0'
)
source=("https://github.com/ActivityWatch/activitywatch/releases/download/v${pkgver}/activitywatch-v${pkgver}-linux-x86_64.zip")
md5sums=('663501b3a59a874d549142d78c77f6d3')
package() {
# Install into /opt/activitywatch
mkdir -p $pkgdir/opt
cp -r activitywatch $pkgdir/opt
# Symlink executables to /usr/bin
mkdir -p $pkgdir/usr/bin
execnames=("aw-qt")
for name in "${execnames[@]}"; do
ln -s /opt/activitywatch/$name $pkgdir/usr/bin/$name
done
modulenames=("aw-server" "aw-server-rust" "aw-watcher-afk" "aw-watcher-window" "aw-watcher-input" "aw-notify" "aw-server-rust/aw-sync")
for name in "${modulenames[@]}"; do
# if a module has a path, use that,
# else assume its in a dir with the same name as the module
dir=$(dirname $name)
if [ "$dir" == "." ]; then
dir=$name
else
# strip the path from the name
name=$(basename $name)
fi
# check that the module exists
if [ ! -f "/opt/activitywatch/$dir/$name" ]; then
echo "WARNING: $dir/$name does not exist, skipping"
continue
fi
ln -s /opt/activitywatch/$dir/$name $pkgdir/usr/bin/$name
done
# Add .desktop file for autostart
mkdir -p $pkgdir/etc/xdg/autostart
cp activitywatch/aw-qt.desktop $pkgdir/etc/xdg/autostart
# See: https://aur.archlinux.org/packages/activitywatch-bin/#comment-834170
#rm $pkgdir/opt/activitywatch/libharfbuzz.so*
#rm $pkgdir/opt/activitywatch/libfreetype.so*
#rm $pkgdir/opt/activitywatch/libfontconfig.so*
# These takes a lot of space, getting rid of them would be nice
#rm $pkgdir/opt/activitywatch/libicu*.so*
# One or more of these is making aw-qt SEGFAULT
#rm $pkgdir/opt/activitywatch/libreadline.so*
#rm $pkgdir/opt/activitywatch/libssl.so*
#rm $pkgdir/opt/activitywatch/libavahi*.so*
#rm $pkgdir/opt/activitywatch/libQt5*.so*
#rm $pkgdir/opt/activitywatch/libstdc++.so*
#rm $pkgdir/opt/activitywatch/libgpg-error.so*
#rm $pkgdir/opt/activitywatch/libz.so*
#rm $pkgdir/opt/activitywatch/libX*.so*
#rm $pkgdir/opt/activitywatch/libxcb*.so*
#rm $pkgdir/opt/activitywatch/libwayland*.so*
#rm $pkgdir/opt/activitywatch/libpng*.so*
#rm $pkgdir/opt/activitywatch/libgtk*.so*
#rm $pkgdir/opt/activitywatch/libgnutls*.so*
#rm $pkgdir/opt/activitywatch/libcairo*.so*
}
|