reading “Build Files Exist” seems to suggest the package already exists, but it’s not, I think.
So what is “CleanBuild” and what do the options mean: [N]one [A]ll [Ab]ort [I]nstalled [No]t Installed
And is meant by (1 2 3, 1-3, ^4) ?
reading “Build Files Exist” seems to suggest the package already exists, but it’s not, I think.
So what is “CleanBuild” and what do the options mean: [N]one [A]ll [Ab]ort [I]nstalled [No]t Installed
And is meant by (1 2 3, 1-3, ^4) ?
lets start with why you are getting this output: If you see a screen like this your app is pulled from the AUR. The AUR works different from the other repos. While the normal repos download standardized arch packages in the form of tar-archives the AUR takes a more radical approach: get the app on your system by (almost) any means necessary. So the AUR doesn’t contain a package but a text file containing instructions. Where to download the necessary files, where to put them, that sort of stuff. In most cases the files is just the source code and your system will compile it according to the instructions in that text file. Compiling means it will turn the human readable programing in to computer readable stuff. In other words, it will create, or build, a standard arch package right then and there, on your system. That’s why the text file is referred to both as “Build Files” or as Pkgbuild.
If you look at your screenshot, you see, that it first downloads your PKGBUILD and then shows the file as present (it uses the plural, because in exceptions there are additional files such as systemd-files that are downloaded as well).
When installing apps from the AUR yay will cache stuff to speed up build times. Performing a clean build means not using this cache. In most cases just pressing enter will work just fine.
And now is the part were I must warn you: Be careful with the AUR:
In conclusion. If possible stick with the repos and flatpak. If an app is not available this way you can use the AUR. If you use the AUR you can keep just pressing Enter until the app in question is installed. Just don’t be surprised if the app breaks two months later because of something stupid the Manjaro devs did