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 Create a PKGBUILD file Create a .SRCINFO file from PKGBUILD: makepkg --printsrcinfo > .SRCINFO Test the package makepkg -sri Delete built/uneeded files if any and then: git add . && git commit -m "First commit" && git push Source: AUR Wiki