Where can I download it? |
Back to the main page
Your distribution probably has compiled packages that are much easier to install.
Released versions are found on http://www.freedesktop.org/software/PackageKit/releases/.
You can get the latest PackageKit daemon from the public git repositories.
git clone https://github.com/PackageKit/PackageKit.git
If you want to commit changes or a add a new backend, then please email the mailing list and we can give you access to a developer server.
PackageKit itself is an abstract daemon, the only bits that are distro specific are the backends.
To make PackageKit work on a new distribution, you have to write a "backend" which is basically a shim layer from the distro tool to packagekitd. A backend can have one or more threads and also spawn other processes.
See the developer information here for more information.
Backends do not have to be complete; often they just contain basic functionality to install and remove but do not provide dependency or file lists for example. See the FAQ here for backends status.
Back to the main page