blob: 8eb81c830222a8e716133faa5a984400080a2963 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
# AUR package repo
This directory is ready to be used as the root of an AUR repository for `wsjtcb`.
Suggested flow:
```bash
cd aur/wsjtcb
makepkg --printsrcinfo > .SRCINFO
namcap PKGBUILD .SRCINFO
git init
git remote add origin ssh://aur@aur.archlinux.org/wsjtcb.git
git add PKGBUILD .SRCINFO
git commit -m "Initial import"
git push origin master
```
Notes:
- The package tracks the tagged release `WSJT-CB-1.1.0` via a pinned git source, so it stays on the stable release while avoiding GitHub archive checksum churn.
- Documentation generation and manpages are disabled to keep Arch build dependencies minimal.
- The upstream CMake install already ships the desktop file, icon, shared data, helper binaries, and docs.
|