blob: 1d99a3f2dee7fd1e81bcbd056661564e892070c5 (
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
|
# Zen Browser XBPS Package
This folder contains files for packaging [Zen Browser](https://zen-browser.app/) for Void Linux using the XBPS package
manager.
## Template File
The `template` file is an XBPS template for Zen Browser.
- Architecture: x86_64 only
- Build style: precompiled binaries
## Installing
You have to build the package with `xbps-src`:
```bash
./xbps-src pkg zen-browser
```
You can check updates with:
```bash
./xbps-src -v update-check zen-browser
```
You can update the package with:
```bash
# update the template file manually
# fetch source files
./xbps-src fetch zen-browser
# update checksum
xgensum -i zen-browser
# build the updated package
./xbps-src pkg zen-browser
```
If `xgensum` is not found, install the `xtools` package.
|