Publish to package managers
Publishing libqmlbind to package managers would make installation a lot easier.
I've an Arch Linux PKGBUILD here, I could publish it to AUR repo (I've to learn how to do it first).
@rainbyte nice! The PKGBUILD seems fine for me.
Publishing to AUR is as simple as something like this:
makepkg --printsrcinfo > .SRCINFO
git add .SRCINFO
git commit
git remote add aur git+ssh://[email protected]/libqmlbind.git
git fetch aur
git push
See https://wiki.archlinux.org/index.php/Arch_User_Repository#Submitting_packages
Not sure whether the package should be called libqmlbind or qmlbind though, depending on the generated directory structure.
In Mac, libqmlbind is now installable via Homebrew :package: (https://github.com/seanchas116/libqmlbind#mac--homebrew)
Arch Linux AUR Packages available in 2 versions: v0.1.0 and git master
@rainbyte just tested the installation of both of them, nicely done. :)
Just added the AUR links to the readme. :+1:
@rainbyte something seems to be broken with the git version of the AUR package, every time I update the AUR, it recompiles libqmlbind and thinks there's an update:
==> Software upgrade (new version) :
aur/libqmlbind-git v0.2.0.17.g7e94662-1 -> 9242442-1
Maybe the pkgver() function has an error?
https://wiki.archlinux.org/index.php/VCS_package_guidelines#The_pkgver.28.29_function
@florianjacob I'll see what's happening. Thanks for letting me know.
Problem solved, I just forgot to update the .SRCINFO
@rainbyte thanks! :+1: