blob: 0f4d032c694eda4f9dc3493f3a9035550e623812 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
# git-req AUR package
[The `git-req` source is here](https://github.com/arusahni/git-req).
## Repo Recipes
#### Add the AUR repo (assuming this repo is cloned)
```bash
git remote add aur ssh://aur@aur.archlinux.org/git-req.git
git fetch aur
```
#### Bumping the app version
1. Set `pkgver` in the `PKGBUILD`
2. Get the new sha256sums: `makepkg -g`
3. Update the `sha256sums` line in the `PKGBUILD`
4. Test by running `makepkg`
5. Update the `.SRCINFO` file: `makepkg --printsrcinfo > .SRCINFO`
6. Add and commit the `PKGBUILD` and `.SRCINFO` files
7. Push to GitHub and AUR: `git push && git push aur master`
|