install: fix bug in apt install target
This commit is contained in:
parent
3c11eff55a
commit
abc5a31c15
2
Makefile
2
Makefile
|
@ -17,7 +17,7 @@ install_macos: install_brew install_pip
|
||||||
install_apt:
|
install_apt:
|
||||||
@echo "Installing Solaar dependencies via apt"
|
@echo "Installing Solaar dependencies via apt"
|
||||||
sudo apt update
|
sudo apt update
|
||||||
sudo apt install libdbus-1-dev libglib2.0-dev libgtk-3-dev libgirepository-1.0-dev
|
sudo apt install libdbus-1-dev libglib2.0-dev libgtk-3-dev libgirepository1.0-dev
|
||||||
|
|
||||||
install_apt_python3.13:
|
install_apt_python3.13:
|
||||||
@echo "Installing Solaar dependencies via apt"
|
@echo "Installing Solaar dependencies via apt"
|
||||||
|
|
|
@ -42,8 +42,8 @@ or `make install_dnf` or `make install_brew`.
|
||||||
These might not install all needed packages in older versions of your distribution.
|
These might not install all needed packages in older versions of your distribution.
|
||||||
Next, install the Solaar rule via `make install_udev`.
|
Next, install the Solaar rule via `make install_udev`.
|
||||||
If you are using Wayland instead of X11 you may want to instead `make install_udev_uinput`
|
If you are using Wayland instead of X11 you may want to instead `make install_udev_uinput`
|
||||||
Finally, install Solaar via `make install_pip` or `make install_pipx`.
|
|
||||||
so that Solaar rules can simulate input in Wayland.
|
so that Solaar rules can simulate input in Wayland.
|
||||||
|
Finally, install Solaar via `make install_pip` or `make install_pipx`.
|
||||||
|
|
||||||
Parts of the installation process require sudo privileges so you may be asked for your password.
|
Parts of the installation process require sudo privileges so you may be asked for your password.
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue