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

推荐订阅源

WordPress大学
WordPress大学
博客园 - 司徒正美
宝玉的分享
宝玉的分享
阮一峰的网络日志
阮一峰的网络日志
The Cloudflare Blog
月光博客
月光博客
博客园 - 【当耐特】
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
博客园 - 三生石上(FineUI控件)
博客园 - 聂微东
小众软件
小众软件
Hugging Face - Blog
Hugging Face - Blog
酷 壳 – CoolShell
酷 壳 – CoolShell
Apple Machine Learning Research
Apple Machine Learning Research
V
V2EX
Jina AI
Jina AI
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
罗磊的独立博客
雷峰网
雷峰网
博客园 - 叶小钗
量子位
IT之家
IT之家

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) - signal-desktop-beta-bin
2026-05-29 · via AUR Newest Packages

captn3m0 commented on 2025-09-07 13:07 (UTC)

Ouch, corrected. Added conflicts as well. An install might complain about /usr/bin/signal-desktop-beta already existing, that would need a manual cleanup.

Edu4rdSHL commented on 2025-09-06 20:21 (UTC) (edited on 2025-09-06 20:23 (UTC) by Edu4rdSHL)

captn3m0, after checking, you did something different from the patch. Are you sure that the usage of install() is correct there? According to the docs, that's not the correct usage of that.

I just checked and /usr/bin/signal-desktop-beta is not created after this change.

I propose to create a wrapper script that calls exec /opt/Signal Beta/signal-desktop-beta $@, or do the symlink on package(), but then we would need a .install file with a post_remove() hook there.

Edu4rdSHL commented on 2025-09-06 20:05 (UTC)

Thanks, vitaliikuzhdin. I hope this change also gets rid of the conflicting /usr/bin/signal-desktop-beta ownership when trying to replace the package.

captn3m0 commented on 2025-09-06 19:34 (UTC)

Dropped the .install file after validating the hooks. Thanks for the suggestion.

vitaliikuzhdin commented on 2025-09-06 19:34 (UTC) (edited on 2025-09-06 19:34 (UTC) by vitaliikuzhdin)

diff -aur signal-desktop-beta-bin/PKGBUILD signal-desktop-beta-bin~/PKGBUILD
--- signal-desktop-beta-bin/PKGBUILD
+++ signal-desktop-beta-bin~/PKGBUILD
@@ -8,8 +8,8 @@
 license=('GPL3')
 depends=('libnotify' 'libxtst' 'nss' 'xdg-utils' 'libxss')
 options=('!strip' '!emptydirs')
-install=${pkgname}.install
 provides=('signal-desktop-beta')
+conflicts=('signal-desktop-beta')
 _pkgver=7.70.0-beta.1
 pkgver=${_pkgver/-/}
 source=("https://updates.signal.org/desktop/apt/pool/s/signal-desktop-beta/signal-desktop-beta_${_pkgver}_amd64.deb")
@@ -18,4 +18,8 @@
 package(){
   # Extract package data
   tar xf data.tar.xz -C "${pkgdir}"
+
+   # Link to the binary
+   install -d "${pkgdir}/usr/bin"
+   ln -sf '/opt/Signal Beta/signal-desktop-beta' "${pkgdir}/usr/bin/signal-desktop-beta"
 }
Only in signal-desktop-beta-bin: signal-desktop-beta-bin.install

Edu4rdSHL commented on 2025-09-06 19:20 (UTC)

Feel free to send a patch, or I will do it when I have some spare time. Also, what install() section are you talking about? Did you mean package()?

vitaliikuzhdin commented on 2025-09-06 19:15 (UTC)

Please remove the .install file (the icon cache is already handled by a hook provided by the respective package) and move the symlink creation to install().

Edu4rdSHL commented on 2025-02-07 18:39 (UTC)

The issue should be fixed on 7.42.0beta.1.

Edu4rdSHL commented on 2025-02-05 23:45 (UTC) (edited on 2025-02-05 23:46 (UTC) by Edu4rdSHL)

signal-desktop-beta is not affected by this because you build it locally, so if it's crucial for you, you can switch to that package instead.

Please don't downgrade glibc as someone in the Signal issue suggests, that's a terrible idea.

presidentwolf commented on 2025-02-05 23:40 (UTC)