Re: How to get started packaging things on the AUR...
Reply #6 –
I don't understand what the problem is. The instructions aren't too complicated. Start by creating a git repo.
$ git clone ssh://[email protected]/package_name.git
Name "package_name" whatever you want to call your package. Put your PKGBUILD and any other files you need in that directory. Then you just run a makepkg command and some git commands.
$ makepkg --printsrcinfo > .SRCINFO
$ git add PKGBUILD .SRCINFO
$ git commit -m "useful commit message"
$ git push
Sidenote: If your packages happen to need more files than just the PKGBUILD and .SRCINFO be sure to add them as well with git add.