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

推荐订阅源

爱范儿
爱范儿
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
WordPress大学
WordPress大学
Apple Machine Learning Research
Apple Machine Learning Research
小众软件
小众软件
雷峰网
雷峰网
博客园 - 聂微东
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
博客园 - 三生石上(FineUI控件)
博客园_首页
博客园 - 司徒正美
博客园 - 叶小钗
IT之家
IT之家
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
Hugging Face - Blog
Hugging Face - Blog
Last Week in AI
Last Week in AI
博客园 - 【当耐特】
宝玉的分享
宝玉的分享
有赞技术团队
有赞技术团队
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
T
Tailwind CSS Blog
V
V2EX
The Cloudflare Blog

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) - orca-slicer-nightly-bin
2026-05-29 · via AUR Newest Packages

Latest Comments

Felixoid commented on 2026-06-22 09:52 (UTC) (edited on 2026-06-22 10:00 (UTC) by Felixoid)

Updated PKGBUILD here

I don't like it. The new set of assets allows us to make the package multiarch, so I'll go in this direction.

Besides, you "simplified" it to the ground, removing the proper versioning and hashsums validation.

kiodo1981 commented on 2026-06-22 07:47 (UTC)

"The previous PKGBUILD failed to correctly select the architecture and AppImage filename, leading to build errors. Fixed the extraction logic and path handling to ensure a successful build.

Updated PKGBUILD here: https://hastebin.com/share/ecapoqiruw.bash

k8rgrl commented on 2026-05-29 09:30 (UTC)

Missing Dep: JQ Won't compile without it.

Felixoid commented on 2026-05-26 10:03 (UTC)

In this case, pkgver and prepare can end up with different artifacts.

pkgver is executed after prepare, so I'll make the latter preserving the JSON output of the downloaded artifact. As well, the asset object contains the digest field, so I'll use it in the verify function.

Thanks for the research. Your new structure represents the canonical PKGBUILD better.

kiodo1981 commented on 2026-05-24 09:15 (UTC) (edited on 2026-05-24 09:20 (UTC) by kiodo1981)

Hello, I asked an AI how to make this package dynamically fetch the latest available nightly release on every build, since right now the static source array locks it to a specific version until you manually update the AUR repository.

It suggested moving the curl/jq logic inside prepare() and leaving the source/sha512sums arrays empty. This way, the package acts as a proper pseudo-VCS package and fetches the real latest nightly AppImage whenever a user runs makepkg.

Here is the solution it generated for the source, sha512sums, and prepare sections:

What do you think about this approach?

https://hastebin.com/share/surowamemu.bash

uberben commented on 2026-05-12 17:10 (UTC)

Sorry for letting this package rot. I'm not using it anymore and don't have much time to maintain it. I'm happy to hand it off to a new maintainer, otherwise it will probably be a bit before I can get these fixes addressed.

pdizzle commented on 2026-05-12 13:23 (UTC)

Getting a build failure

sed: can't read squashfs-root/OrcaSlicer.desktop: No such file or directory

Maybe the file structure of the AppImage changed?

arthuring commented on 2026-04-27 18:49 (UTC)

Dependencies are redundant, especially webkit2gtk (4.0) which takes a lot of time to build, please fix this issue

Felixoid commented on 2026-02-23 15:45 (UTC)

Dear uberben, please, fix the package:

diff --git a/PKGBUILD b/PKGBUILD
index 9ab651d..73bd2c5 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -50,7 +50,7 @@ package() {
        install -d "$pkgdir/opt/${pkgname%-bin}/"
        cp -av squashfs-root/* "$pkgdir/opt/${pkgname%-bin}/"
        rm -rf "$pkgdir/opt/${pkgname%-bin}/usr/"
-       rm "$pkgdir/opt/${pkgname%-bin}"/{OrcaSlicer.desktop,AppRun,OrcaSlicer.png,OrcaSlicer-x86_64.AppImage}
+       rm "$pkgdir/opt/${pkgname%-bin}"/{OrcaSlicer.desktop,AppRun,OrcaSlicer.png}

        install -d "$pkgdir/usr/bin"
        ln -s "/opt/${pkgname%-bin}/bin/orca-slicer" "$pkgdir/usr/bin/"