mirror of
https://github.com/Cheviiot/Nivora.git
synced 2026-08-03 15:51:12 +00:00
Repacks the official Electron build vk.me/app serves directly (no GitHub release or distro repo for this product). Upstream's own .deb installs under the literal Cyrillic product name /opt/VK Мессенджер — package() resolves that directory dynamically instead of hardcoding it, then lays the payload out under a clean /opt/vk-messenger to match this repo's convention.
38 lines
1.1 KiB
Bash
Executable File
38 lines
1.1 KiB
Bash
Executable File
#!/bin/bash
|
|
|
|
set -euo pipefail
|
|
|
|
optional_refresh() {
|
|
local label=$1
|
|
shift
|
|
if ! "$@"; then
|
|
echo "Предупреждение: не удалось обновить ${label}." >&2
|
|
fi
|
|
}
|
|
|
|
sandbox=/opt/vk-messenger/chrome-sandbox
|
|
if [[ ! -f "$sandbox" ]]; then
|
|
echo "Ошибка: не найден Electron sandbox: ${sandbox}" >&2
|
|
exit 1
|
|
fi
|
|
if [[ -L /proc/self/ns/user ]] && command -v unshare >/dev/null 2>&1 \
|
|
&& unshare --user true 2>/dev/null; then
|
|
chmod 0755 "$sandbox"
|
|
else
|
|
chmod 4755 "$sandbox"
|
|
fi
|
|
|
|
if command -v update-desktop-database >/dev/null 2>&1; then
|
|
optional_refresh "desktop-базу" update-desktop-database -q /usr/share/applications
|
|
fi
|
|
|
|
if command -v gtk-update-icon-cache >/dev/null 2>&1; then
|
|
optional_refresh "кэш иконок" gtk-update-icon-cache -f -q /usr/share/icons/hicolor
|
|
fi
|
|
|
|
if command -v kbuildsycoca6 >/dev/null 2>&1; then
|
|
optional_refresh "кэш KDE" kbuildsycoca6 --noincremental
|
|
elif command -v kbuildsycoca5 >/dev/null 2>&1; then
|
|
optional_refresh "кэш KDE" kbuildsycoca5 --noincremental
|
|
fi
|