37 lines
644 B
Markdown
37 lines
644 B
Markdown
# Arch package
|
|
|
|
This PKGBUILD is intended for Arch Linux and AUR-style release packaging. It
|
|
builds from the project release tag, uses Arch system libraries, and disables
|
|
FetchContent so package builds do not download dependencies during CMake
|
|
configure.
|
|
|
|
Before publishing a release package, replace the temporary `SKIP` checksum in
|
|
`PKGBUILD` with a real checksum, for example by running `updpkgsums` after the
|
|
tag archive is available.
|
|
|
|
## Build
|
|
|
|
```fish
|
|
cd packaging/arch
|
|
makepkg -f
|
|
```
|
|
|
|
## Install
|
|
|
|
```fish
|
|
cd packaging/arch
|
|
sudo pacman -U qemby-*.pkg.tar.zst
|
|
```
|
|
|
|
## Run
|
|
|
|
```fish
|
|
qemby
|
|
```
|
|
|
|
## Uninstall
|
|
|
|
```fish
|
|
sudo pacman -R qemby
|
|
```
|