blob: ee78a68bdc5eea44dcd7daf3c1a398be8a7375e7 (
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
|
# Pulsemeeter XBPS Package
This folder contains files for packaging [Pulsemeeter](https://github.com/theRealCarneiro/pulsemeeter) for Void Linux
using the XBPS package manager.
## Template File
The `template` file is an XBPS template for Pulsemeeter.
- Architecture: any
- Build style: python3-pep517
The patch `fix-asyncio-errors` was added to work with Python 3.14.
It will be removed when a fixed new version will be released.
Source: [theRealCarneiro/pulsemeeter#172](https://github.com/theRealCarneiro/pulsemeeter/pull/172).
## Installing
You have to build the package with `xbps-src`:
```bash
./xbps-src pkg pulsemeeter
```
You can update the package with:
```bash
# update the template file manually
# fetch source files
./xbps-src fetch pulsemeeter
# update checksum
xgensum -i pulsemeeter
# build the updated package
./xbps-src pkg pulsemeeter
```
If `xgensum` is not found, install the `xtools` package.
|