You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
set -vex
|
|
|
|
wget https://github.com/ninja-build/ninja/releases/download/v1.9.0/ninja-linux.zip
|
|
unzip -q ninja-linux.zip -d build
|
|
|
|
pip3 install meson
|
|
echo ${PATH}
|
|
ls /usr/local
|
|
ls /usr/local/bin
|
|
export PATH="${PWD}"/build:/usr/local/bin:/usr/bin:${PATH}
|