Skip to content

Creating AUR Packages

  • Check if the choosen app name already exists in AUR and, if not, checkout a new empty repository:
git clone ssh://aur@aur.archlinux.org/appname.git
makepkg --printsrcinfo > .SRCINFO
makepkg -sri
  • Delete built/uneeded files if any and then:
git add . && git commit -m "First commit" && git push

Source: AUR Wiki