惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

D
DataBreaches.Net
罗磊的独立博客
M
MIT News - Artificial intelligence
G
Google Developers Blog
V
V2EX
D
Docker
博客园_首页
The Cloudflare Blog
人人都是产品经理
人人都是产品经理
Y
Y Combinator Blog
WordPress大学
WordPress大学
T
Tailwind CSS Blog
博客园 - 司徒正美
J
Java Code Geeks
L
LangChain Blog
博客园 - 三生石上(FineUI控件)
B
Blog RSS Feed
博客园 - 【当耐特】
小众软件
小众软件
Apple Machine Learning Research
Apple Machine Learning Research
大猫的无限游戏
大猫的无限游戏
P
Proofpoint News Feed
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
博客园 - Franky

AUR Newest Packages

AUR (en) - linuxqq-clipsync-git AUR (en) - libtslitex-git AUR (en) - libtslitex-git AUR (en) - carton-appimage AUR (en) - veila-git AUR (en) - veila-bin AUR (en) - vigil-baseline AUR (en) - byedroid AUR (en) - neovim-base16-git AUR (en) - pirata AUR (en) - rpi-imager-git-non-root AUR (en) - python-fastapi-sso AUR (en) - tmux-ai-titles AUR (en) - zeed-bin AUR (en) - bclone-bin AUR (en) - dwl-git-azerty AUR (en) - auggie-bin AUR (en) - libspatialaudio-git AUR (en) - libspatialaudio AUR (en) - miniupnpd-iptables-legacy AUR (en) - miniupnpd-nft AUR (en) - jeeves-bin AUR (en) - opennow AUR (en) - rotki AUR (en) - kapi-bin AUR (en) - classfi-bin AUR (en) - classfi-git AUR (en) - classfi AUR (en) - giff-git AUR (en) - budget-tracker-bin
AUR (en) - lagrange-bin
2026-06-23 · via AUR Newest Packages

Latest Comments

bkb commented on 2026-03-18 06:49 (UTC)

The --appimage-extract method is broken for v1.19.4. The AppImage runtime fails with "This doesn't look like a squashfs image" even though the download is valid (SHA256 passes).

Workaround: Use unsquashfs with the correct offset instead.

Diff for PKGBUILD:

--- a/PKGBUILD
+++ b/PKGBUILD
@@ -38,7 +38,8 @@ prepare() {
         s/@runname@/${pkgname%-bin}/g
     " "${srcdir}/${pkgname%-bin}.sh"
     chmod +x "${srcdir}/${pkgname%-bin}-${pkgver}-${CARCH}.AppImage"
-    "${srcdir}/${pkgname%-bin}-${pkgver}-${CARCH}.AppImage" --appimage-extract > /dev/null
+    # Workaround: --appimage-extract is broken, use unsquashfs with offset
+    unsquashfs -dest "${srcdir}/squashfs-root" -offset 944632 "${srcdir}/${pkgname%-bin}-${pkgver}-${CARCH}.AppImage" > /dev/null
     sed -i "s/${_appname}/${pkgname%-bin}/g" "${srcdir}/squashfs-root/${_appname}.desktop"
     sed -i "s/${_appname}/${pkgname%-bin}/g" "${srcdir}/squashfs-root/usr/share/metainfo/${_appname}.appdata.xml"
 }

Quick fix: After downloading the PKGBUILD with paru --getpkgbuild aur/lagrange-bin, run:

cd lagrange-bin
sed -i 's|"${srcdir}/${pkgname%-bin}-${pkgver}-${CARCH}.AppImage" --appimage-extract > /dev/null|unsquashfs -dest "${srcdir}/squashfs-root" -offset 944632 "${srcdir}/${pkgname%-bin}-${pkgver}-${CARCH}.AppImage" > /dev/null|' PKGBUILD
makepkg -si

Would be great if you could upstream this fix to the PKGBUILD! 🙏

paulhart commented on 2025-09-14 11:40 (UTC) (edited on 2025-09-14 11:43 (UTC) by paulhart)

I was able to complete the install by updating sha256sums_x86_64 to: 371b5e8958df964e5c1f69ef6b6ef3545c3be56539dd9d68fb98c9091a1cf4f6

however, when I try to run (I'm using sway), I get the following error message:

[SDL] init failed: wayland not available

Kcchouette commented on 2025-09-11 07:46 (UTC)

Hello I encountered an error while trying to build the lagrange-bin package. The validation of the lagrange-1.19.1-x86_64.AppImage file failed with the following message:

==> Validating source_x86_64 files with sha256sums...
    lagrange-1.19.1-x86_64.AppImage ... FAILED
==> ERROR: One or more files did not pass the validity check!
Failed to build lagrange-bin

zxp19821005 commented on 2023-05-29 01:18 (UTC)

@m040601 I've update the PKGBUILD file.But I can't test it becauese I don't have the related devices.Please help me to verify it.Thank you!

m040601 commented on 2023-05-26 12:17 (UTC) (edited on 2023-05-26 12:20 (UTC) by m040601)

Thanks for providing this PKGBUILD. Very usefull.

The developer also releases appimages for armhf. These should support all arm architectures, both 32bit and 64bit.

Very very usefull is small underpowerd chromebooks and raspberry pi' running Arch Linux ARM

https://git.skyjake.fi/gemini/lagrange/releases

...
      □ 9.7 MiB Lagrange-1.16.1-armhf.AppImage
      □ 488 B Lagrange-1.16.1-armhf.AppImage.sig
...

Please change the PKGBUILD to also support this, and add someting like this,

arch=('x86_64' 'aarch64' 'armv7h')

(Example how others do it, https://aur.archlinux.org/packages/obsidian-appimage )

Thanks in advance.