blob: 77e95a8ff0a1c329fe73e23e54517abc337e9b41 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
# 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 and update .SRCINFO
`makepkg --printsrcinfo > .SRCINFO`
- Commit and push changes
`git add PKGBUILD .SRCINFO; git commit; git push`
|