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

推荐订阅源

V
Visual Studio Blog
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
博客园 - 聂微东
博客园 - 【当耐特】
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
C
Check Point Blog
H
Hackread – Cybersecurity News, Data Breaches, AI and More
美团技术团队
WordPress大学
WordPress大学
Last Week in AI
Last Week in AI
Y
Y Combinator Blog
IT之家
IT之家
T
Tailwind CSS Blog
月光博客
月光博客
Vercel News
Vercel News
V
V2EX
Engineering at Meta
Engineering at Meta
B
Blog
Stack Overflow Blog
Stack Overflow Blog
A
About on SuperTechFans
Hugging Face - Blog
Hugging Face - Blog
人人都是产品经理
人人都是产品经理
腾讯CDC
I
InfoQ

AUR Newest Packages

fast-syntax-highlighting-git AUR (en) - tdesktop-nolimit AUR (en) - python-gmsh-bin AUR (en) - python-cad_to_openmc-git AUR (en) - yaak-cli-bin AUR (en) - nss-altfiles AUR (en) - loof AUR (en) - deez-notes-bin AUR (en) - flexbv-bin AUR (en) - urxvt-tabbedex-git AUR (en) - kernelstub-git AUR (en) - whispers-git AUR (en) - whispers-bin AUR (en) - kwin-scripts-magnetile AUR (en) - squelchbox AUR (en) - ai-quota-waybar-git AUR (en) - netchecker-git css-git csgo-git counter-strike-global-offensive counter-strike-1.6 counter-strike-source-git AUR (en) - rime-nguphing AUR (en) - vita-presence-rs-bin AUR (en) - vita-presence-rs AUR (en) - rmpv-git AUR (en) - mount-manager AUR (en) - pipeweaver-app AUR (en) - pipeweaver AUR (en) - netchecker
AUR (en) - optiscaler-client-bin
2026-06-05 · via AUR Newest Packages

Latest Comments

drinkcat commented on 2026-06-13 15:06 (UTC)

No rush! And again, not a big deal ,-)

nasir91 commented on 2026-06-13 15:04 (UTC)

Oh crap, if thats the case then I'll fix it once im back home after work. Thanks for letting me know! 🙂

drinkcat commented on 2026-06-13 15:02 (UTC) (edited on 2026-06-13 15:02 (UTC) by drinkcat)

Understood it's an automated process, but it's also probably not necessary to create a new empty commit when nothing changes:

  • it keeps updating the "Last Updated" date here
  • this package constantly appears in the list of recently modified AUR packages
  • your aur git history will explode (it's already a bit long for a 9-day old package: https://aur.archlinux.org/cgit/aur.git/log/?h=optiscaler-client-bin ,-)
  • and, it got caught in my AUR scanning little project (which is why I noticed)

nasir91 commented on 2026-06-13 14:41 (UTC)

Hey i know, that is intended since ive automated the update process. It checks every 6 hrs for a release.

drinkcat commented on 2026-06-13 14:27 (UTC)

nasir91 commented on 2026-06-04 17:38 (UTC)

Hey thanks for the tip! I think I fixed the error now.

cannon6210 commented on 2026-06-04 16:48 (UTC) (edited on 2026-06-04 20:40 (UTC) by cannon6210)

I get the following error:

Failure processing application bundle; possible file corruption.
Arithmetic overflow while reading bundle.
A fatal error occurred while processing application bundle

I believe striping is affecting the binary. If you want you can try something like this instead:

_pkgname=optiscaler-client
pkgname=${_pkgname}-custom-bin
pkgver=1.0.5
pkgrel=1
pkgdesc='OptiScaler Client is a modern, high-performance desktop utility...'
arch=(x86_64)
url=https://github.com/Agustinm28/Optiscaler-Client

source=(
    "optiscaler-client-${pkgver}.zip::https://github.com/Agustinm28/Optiscaler-Client/releases/download/OptiscalerClient-${pkgver}/OptiscalerClient-${pkgver}-linux-x64.zip"
)

sha256sums=(
    'SKIP'
)

provides=($_pkgname)
conflicts=($_pkgname $_pkgname-git)
options=(!strip)

package() {
    mkdir -p "${pkgdir}/opt"
    cp -r "$srcdir" "${pkgdir}/opt/optiscaler-client"
    mkdir -p "${pkgdir}/usr/bin"
    ln -s "/opt/optiscaler-client/OptiscalerClient" "${pkgdir}/usr/bin/optiscaler-client"
    install -Dm644 "${startdir}/optiscaler-client.desktop" "${pkgdir}/usr/share/applications/optiscaler-client.desktop"
}