blob: 7607d44ed6c847edbddc06b777f543b771497d86 (
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
|
aur-activitywatch-bin
=====================
An AUR package for ActivityWatch using prebuilt binaries.
## How to update the AUR package
You need:
- Maintainer rights to the AUR package
- Your AUR ssh key configured
After modifying `PKGBUILD` as appropriate, and testing the package on your machine, run the following to:
- build the package
- updates checksums with `updpkgsums`
- regenerates `.SRCINFO` with `makepkg --printsrcinfo > .SRCINFO`
- commit the changes
- push to the AUR
```sh
make package
git add PKGBUILD .SRCINFO
git commit -m "Updated .SRCINFO"
git remote add aur aur@aur.archlinux.org/activitywatch-bin.git
git push aur
```
|