Vendor things

This commit is contained in:
John Doty 2024-03-08 11:03:01 -08:00
parent 5deceec006
commit 977e3c17e5
19434 changed files with 10682014 additions and 0 deletions

View file

@ -0,0 +1,18 @@
#!/bin/sh
# download and compile the wayland libs for given version, they will be installed in ~/install
wayland_version=$1
mkdir ~/temp/ ~/install
# download and extract
cd ~/temp/
wget https://github.com/wayland-project/wayland/archive/${wayland_version}.tar.gz -O wayland.tar.gz
tar xf wayland.tar.gz
cd wayland-${wayland_version}
# compile and install
./autogen.sh --prefix=$HOME/install --disable-documentation --disable-dtd-validation --disable-dependency-tracking
make
make install