fix(telegram-desktop): ignore archive ownership on extraction

tsetup.tar.xz bakes in uid/gid 1000 from Telegram's release tooling;
the sandboxed builder can't chown to it, so the build failed with
"Невозможно изменить владельца". --no-same-owner/--no-same-permissions
matches the pineconemc package's handling of the same issue.
This commit is contained in:
Александр
2026-07-25 02:30:28 +10:00
parent 8564f84ed5
commit 84a1bbea8a
+1 -1
View File
@@ -59,7 +59,7 @@ scripts=(
package() {
cd "${srcdir}"
tar -xJf tsetup.tar.xz
tar --no-same-owner --no-same-permissions -xJf tsetup.tar.xz
install -dm755 "${pkgdir}/opt/telegram-desktop"
install -Dm755 "Telegram/Telegram" "${pkgdir}/opt/telegram-desktop/Telegram"