-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
6 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -30,22 +30,25 @@ Sway overview can be structured via html, styled via css. | |
Install the needed dependencies and libraries: | ||
|
||
``` | ||
git meson ninja-build pkg-config | ||
libpng,libfreetype, | ||
libgl,libglew,libegl,libwegl,wayland-client,wayland-protocols, | ||
libgl,libglew,libegl,libwegl,wayland-client,wayland-protocols,xkbcommon,gles2 | ||
fonts-terminus | ||
```` | ||
On debian based systems ( over version 12 ): | ||
``` | ||
sudo apg-get install meson ninja-build pkg-config cmake libpng-dev libfreetype-dev libgl-dev libgles2-mesa-dev libmesa1-dev libglew-dev libegl-dev libwayland-dev wayland-protocols fonts-terminus | ||
sudo apg-get install git meson ninja-build pkg-config libpng-dev libfreetype-dev libgl-dev libegl-dev libglew-dev libwayland-dev libxkbcommon-dev wayland-protocols libgles2-mesa-dev | ||
|
||
``` | ||
On arch based systems : | ||
``` | ||
sudo pacman -Qs meson ninja-build pkg-config cmake libpng freetype2 | ||
sudo pacman -Qs git meson pkg-config ninja glew wayland-protocols libpng freetype2 libgl libegl wayland wayland-protocols libxkbcommon | ||
``` | ||
or use the AUR | ||
Then run these commands: | ||
``` | ||
git clone [email protected]:milgra/sov.git | ||
|