v1cont / yad

Yet Another Dialog
GNU General Public License v3.0
644 stars 58 forks source link

Bash install script for Ubuntu 24.04 #263

Open SirNoName2705 opened 1 month ago

SirNoName2705 commented 1 month ago

It is not perfect, but as I was searching for this, I did not find one. You need to run it with sudo. Some packages are installed that are not needed for it, but idk anymore which one and if you searching for this you are probably trying to install steamtinkerinstall as well.

It is not important where you execute that script.

#!/bin/bash
temp_dir="yad-dialog-code"
apt -y install autoconf intltool automake meson libsystemd-dev pkg-config ninja-build git libdbus-1-dev libinih-dev build-essential libgtk-3-dev libgtk-3-0
git clone https://github.com/v1cont/yad.git "$temp_dir"
cd "$temp_dir"
autoreconf -ivf && intltoolize
./configure && make && make install
cd ..
rm -R "$temp_dir"
Z0mb1ee commented 1 week ago

thank you for the script. couldn't get yad to install and when i tried your script it worked like a charm.