Skip to content

Latest commit

 

History

History
26 lines (18 loc) · 839 Bytes

DEV_NOTES.md

File metadata and controls

26 lines (18 loc) · 839 Bytes

DEV NOTES

Building a release

nimble build -d:release - the resulting executable in the root directory of the project can be uploaded as a release version of the software

Publish to AUR

  1. Update package version in pkgver in PKGBUILD
  2. Test with makepkg -si
  3. makepkg --printsrcinfo > .SRCINFO
  4. Make sure you have the SSH key, if not use ssh-keygen and save the public key on the AUR in the settings
  5. git clone ssh://[email protected]/ytbgmplayer-git.git
  6. If you are getting any access errors, you may need to add the following to your .ssh/config file
Host aur.archlinux.org
    IdentityFile ~/.ssh/aur
  1. Copy the new PKGBUILD and .SRCINFO to the cloned AUR package
  2. Commit and push