-
Notifications
You must be signed in to change notification settings - Fork 574
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add AUR link to README #778
Add AUR link to README #778
Conversation
The idea to support native packages for linux is great! For Arch linux it is pacman, so end result of supporting pacman should be that end user should be able to install icloudpd using, say, What are the capabilities for permission control in pacman registry? For supported registries/repositories/etc we try to keep accounts of individual members/admins organized into org/group, so that access is not locked to one individual. |
AUR packages are first compiled, manually or by an AUR helper, and then installed through pacman. A basic description of AUR is best found on the wiki. Via the AUR allows for co-maintainers. So I could add additional people if available. If for some reason I would stop maintaining the package suddenly the package can be flagged though an 'Orphan Request'. If I don't respond someone else will be able to take over maintenance. Exact details can be found on the wiki again :) |
I looked at the PKGBUILD -- it is good that you are using existing released binaries instead recompiling. How can AUR/PKGBUILD support multiple architectures? icloudpd and archlinux both support amd64, arm32, and arm64 IIUC. |
There are builtin PKGBUILD options to allow for installation on different architectures. Basically comes down to adding extra sources and checksums for each architecture. I can take a look and update the PKGBUILD accordingly. |
Awesome! May I also suggest renaming package to |
The bin suffix is an AUR submission rule. It indicates that the package uses prebuilt binaries. No suffix would indicate the package is built from source. So with the current PKGBUILD I can't just remove it unfortunately. Making a PKGBUILD that builds from source is possible of course. Albeit a bit more effort. Reference:
|
The PKGBUILD now supports armv7h, arm64 and i686. I don't have those architectures around to test but, assuming I matched the architectures and bins correctly, they should function. |
a5b3f0e
into
icloud-photos-downloader:master
Thanks for the quick merge. Just saw there's another set of download links at the start of the README. Bit inattentive on my part. Something I noticed before is that the links point to README's of each download option, instead of direct links. Is there any need for such a README for the AUR option? Can fix both of course. But already great that a direct link is visible in the README now. |
Hi,
Thanks for the nice tool! Since a package was not available on the AUR yet I created a simple PKGBUILD that sets up the icloudpd binary. This should make using and updating the tool a bit easier for Arch users. Because this provides another way to install the package I added this option to the README. If there is any additional documentation you'd like me to write I'd be happy to do so, just let me know.