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.
|
#!/bin/sh
|
|
|
|
mkdir -p raylib
|
|
wget https://github.com/raysan5/raylib/releases/download/5.0/raylib-5.0_linux_amd64.tar.gz
|
|
tar -xvf raylib-5.0_linux_amd64.tar.gz
|
|
mv ./raylib-5.0_linux_amd64/* ./raylib/
|
|
|
|
rm -rf raylib-5.0_linux_amd64 raylib-5.0_linux_amd64.tar.gz
|
|
|