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

推荐订阅源

OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
G
Google Developers Blog
雷峰网
雷峰网
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
人人都是产品经理
人人都是产品经理
U
Unit 42
B
Blog RSS Feed
博客园 - 【当耐特】
T
Tailwind CSS Blog
V
V2EX
S
SegmentFault 最新的问题
美团技术团队
Apple Machine Learning Research
Apple Machine Learning Research
Y
Y Combinator Blog
M
MIT News - Artificial intelligence
量子位
aimingoo的专栏
aimingoo的专栏
Stack Overflow Blog
Stack Overflow Blog
Engineering at Meta
Engineering at Meta
GbyAI
GbyAI
P
Proofpoint News Feed
D
DataBreaches.Net
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
A
About on SuperTechFans

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) - 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"
}