glfw: add script to fetch upstream sources

Signed-off-by: Stephen Gutekanst <stephen@hexops.com>
This commit is contained in:
Stephen Gutekanst 2021-07-06 20:49:02 -07:00
commit 7de593a611

15
update-upstream.sh Executable file
View file

@ -0,0 +1,15 @@
#!/usr/bin/env bash
set -ex
rm -rf upstream/
mkdir upstream/
cd upstream/
git clone https://github.com/glfw/glfw
cd glfw/
git checkout 3.3.4
# Remove non-C files
rm -rf .appveyor.yml .git .gitattributes .gitignore .mailmap .travis.yml
rm cmake_uninstall.cmake.in README.md
rm -r CMake* deps/ examples/ tests/ docs/
rm src/CMakeLists.txt src/*.in