mirror of
https://github.com/gtalent/sc9k.git
synced 2025-09-09 00:52:56 -05:00
19 lines
543 B
Bash
19 lines
543 B
Bash
#! /usr/bin/env bash
|
|
|
|
set -eu
|
|
|
|
dist_dir=.
|
|
|
|
install -Dm 755 $dist_dir/bin/SlideController /usr/local/bin/SlideController
|
|
install -Dm 755 $dist_dir/share/applications/net.drinkingtea.sc9k.desktop /usr/share/applications/net.drinkingtea.sc9k.desktop
|
|
cp -r $dist_dir/share/ /usr/
|
|
|
|
if command -v gtk-update-icon-cache >/dev/null 2>&1; then
|
|
sudo gtk-update-icon-cache /usr/share/icons/hicolor
|
|
fi
|
|
|
|
if command -v apt-get >/dev/null 2>&1; then
|
|
sudo apt-get update
|
|
sudo apt-get install -y qt6-gtk-platformtheme qgnomeplatform-qt6 adwaita-qt
|
|
fi
|