

























Thanks for the quick update! However, the build currently fails during the packaging step because the filename in the package() function was not updated to match the new source name. Please update the install command as follows:
- install -Dm755 "${srcdir}/pangolin" "${pkgdir}/usr/bin/pangolin"
+ install -Dm755 "${srcdir}/pangolin-${pkgver}" "${pkgdir}/usr/bin/pangolin"
This should fix the "No such file or directory" error.
Hi! Thanks for reporting this, it should be fixed now
Hi, thanks for maintaining this package.
Currently, the source file is saved as a generic name pangolin, which causes validity check failures during updates if an older version of the file exists in the user's cache.
Could you please change the source array to include the version in the filename?
For example, source_x86_64=("pangolin-${pkgver}::https://...")
This ensures that makepkg downloads the new version correctly without requiring users to manually clear their cache.
此内容由惯性聚合(RSS阅读器)自动聚合整理,仅供阅读参考。 原文来自 — 版权归原作者所有。
That's weird, I'm pretty sure i changed it, but thank you, now it should be fixed