mirror of
https://github.com/dk98174003/Meshtastic-Client.git
synced 2026-07-03 00:10:56 +02:00
Add files via upload
Debian installation added
This commit is contained in:
@@ -0,0 +1,23 @@
|
||||
#!/usr/bin/env bash
|
||||
# install_fpm_debian.sh
|
||||
# Simple installer script for FPM on Debian-based systems.
|
||||
|
||||
set -e
|
||||
|
||||
if [ "$EUID" -ne 0 ]; then
|
||||
echo "Please run this script as root (e.g. with: sudo ./install_fpm_debian.sh)"
|
||||
exit 1
|
||||
fi
|
||||
|
||||
echo "Updating package lists..."
|
||||
apt update
|
||||
|
||||
echo "Installing Ruby and build tools..."
|
||||
apt install -y ruby ruby-dev build-essential
|
||||
|
||||
echo "Installing FPM via RubyGems..."
|
||||
gem install --no-document fpm
|
||||
|
||||
echo
|
||||
echo "Done. FPM version installed:"
|
||||
fpm --version || echo "FPM installed, but not found in PATH. Try opening a new terminal session."
|
||||
@@ -0,0 +1,19 @@
|
||||
[Desktop Entry]
|
||||
Categories=Network;Utility;
|
||||
Comment[en_US]=Meshtastic Desktop Client
|
||||
Comment=Meshtastic Desktop Client
|
||||
Exec=meshtastic-client
|
||||
GenericName[en_US]=
|
||||
GenericName=
|
||||
Icon=/home/knuds/Desktop/Meshtastic/Meshtastic_client/meshtastic.png
|
||||
MimeType=
|
||||
Name[en_US]=Meshtastic Client
|
||||
Name=Meshtastic Client
|
||||
NoDisplay=false
|
||||
Path=
|
||||
StartupNotify=true
|
||||
Terminal=false
|
||||
TerminalOptions=
|
||||
Type=Application
|
||||
X-KDE-SubstituteUID=false
|
||||
X-KDE-Username=
|
||||
Binary file not shown.
Reference in New Issue
Block a user