blob: 45cb08d46da880b46b0127eba5a1c462b22269df (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
# Maintaining AUR packages
> Maintaining packages on the Arch User Repository
> More information: <https://wiki.archlinux.org/index.php/AUR_submission_guidelines>
- Clone the PKGBUILD to a local repository:
`git clone ssh://aur@aur.archlinux.org/{{package_name}}.git`
- Build the package:
`makepkg -s`
- Update .SRCINFO:
`makepkg --printsrcinfo > .SRCINFO`
- Commit and push changes:
`git add PKGBUILD .SRCINFO; git commit; git push`
|