An open API service indexing awesome lists of open source software.

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.

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
```