blob: 5cf005b06ec1b9c4f48cc5c3780e5a1b401d0c98 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
|
# AUR Packaging
This directory contains files for the AUR package `voidrice-git`.
## Publishing to AUR
1. Clone the AUR repository:
```bash
git clone ssh://aur@aur.archlinux.org/voidrice-git.git
cd voidrice-git
```
2. Copy packaging files:
```bash
cp ../voidrice/aur/* .
```
3. Generate .SRCINFO:
```bash
makepkg --printsrcinfo > .SRCINFO
```
4. Commit and push:
```bash
git add PKGBUILD voidrice.install .SRCINFO
git commit -m "Update to version X"
git push
```
## Testing locally
From this directory:
```bash
makepkg -si
```
|