https://github.com/uhthomas/pkgbuild
Packages for the Arch User Repository.
https://github.com/uhthomas/pkgbuild
archlinux aur pkgbuild
Last synced: 5 months ago
JSON representation
Packages for the Arch User Repository.
- Host: GitHub
- URL: https://github.com/uhthomas/pkgbuild
- Owner: uhthomas
- Created: 2022-02-20T03:26:01.000Z (about 4 years ago)
- Default Branch: main
- Last Pushed: 2022-02-22T02:27:03.000Z (about 4 years ago)
- Last Synced: 2025-10-26T08:54:57.015Z (5 months ago)
- Topics: archlinux, aur, pkgbuild
- Language: Shell
- Homepage: https://aur.archlinux.org/packages?K=uhthomas&SeB=m
- Size: 9.77 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# pkgbuild
Packages for the [Arch User Repository](https://aur.archlinux.org/packages?K=uhthomas&SeB=m).
## Build
Use [paru](https://github.com/Morganamilo/paru).
```sh
❯ paru -Ui
```
## Test
Use [namcap](https://wiki.archlinux.org/title/Namcap).
```sh
❯ namcap -i PKGBUILD
```
## Contributing
Update checksums.
```sh
❯ makepkg -g -f -p PKGBUILD
```
Always update `.SRCINFO`.
```sh
❯ makepkg --printsrcinfo > .SRCINFO
```
Publish changes to the AUR, where `$pkgbase` is the name of the package.
```sh
❯ cd $pkgbase
❯ git init
❯ git remote add origin ssh://aur@aur.archlinux.org/$pkgbase
❯ git fetch origin
❯ git switch master
❯ git add -A
❯ git commit -m "..."
❯ git push
```