feat: add linux-install-deps script
This commit is contained in:
parent
42d3cb2148
commit
be6cdf1f8e
2 changed files with 22 additions and 0 deletions
3
.gitignore
vendored
3
.gitignore
vendored
|
|
@ -31,3 +31,6 @@ bypy/b
|
||||||
bypy/virtual-machines.conf
|
bypy/virtual-machines.conf
|
||||||
_codeql_detected_source_root
|
_codeql_detected_source_root
|
||||||
|
|
||||||
|
*~
|
||||||
|
*swo
|
||||||
|
*swp
|
||||||
|
|
|
||||||
19
linux-install-deps.sh
Normal file
19
linux-install-deps.sh
Normal file
|
|
@ -0,0 +1,19 @@
|
||||||
|
## Debian
|
||||||
|
sudo apt update && sudo apt install -y \
|
||||||
|
liblcms2-dev \
|
||||||
|
libfontconfig-dev \
|
||||||
|
libssl-dev \
|
||||||
|
libpython3-dev \
|
||||||
|
libxxhash-dev \
|
||||||
|
libsimde-dev \
|
||||||
|
libcairo2-dev \
|
||||||
|
## x11 dev libraries \
|
||||||
|
libdbus-1-dev \
|
||||||
|
libxcursor-dev \
|
||||||
|
libxrandr-dev \
|
||||||
|
libxi-dev \
|
||||||
|
libxinerama-dev \
|
||||||
|
libgl1-mesa-dev \
|
||||||
|
libxkbcommon-x11-dev \
|
||||||
|
libfontconfig-dev \
|
||||||
|
libx11-xcb-dev
|
||||||
Loading…
Reference in a new issue