Update CI to target SDL2
This commit is contained in:
parent
185c8af6f5
commit
44c7fb9165
9 changed files with 15 additions and 16 deletions
|
@ -1,2 +1,2 @@
|
|||
# Package repo: https://packages.ubuntu.com/
|
||||
packages+=(xvfb libtool build-essential libsdl1.2-dev libsdl-net1.2-dev libncurses-dev libopusfile-dev)
|
||||
packages+=(xvfb libtool build-essential libsdl2-dev libsdl2-net-dev libncurses-dev libopusfile-dev)
|
||||
|
|
|
@ -1,3 +1,3 @@
|
|||
# Package repo: https://formulae.brew.sh/
|
||||
delim="@"
|
||||
packages+=(coreutils autogen autoconf automake make pkg-config libpng ncurses sdl sdl_net opusfile)
|
||||
packages+=(coreutils autogen autoconf automake make pkg-config libpng ncurses sdl2 sdl2_net opusfile)
|
||||
|
|
|
@ -1,2 +1,2 @@
|
|||
# Package repo: https://apps.fedoraproject.org/packages/
|
||||
packages+=(xvfb libtool ncurses-devel SDL SDL_net-devel opusfile-devel)
|
||||
packages+=(xvfb libtool ncurses-devel SDL2-devel SDL2_net-devel opusfile-devel)
|
||||
|
|
|
@ -1,3 +1,3 @@
|
|||
# Package repo: https://www.macports.org/ports.php?by=name
|
||||
delim=""
|
||||
packages+=(coreutils autogen autoconf automake pkgconfig libpng ncurses libsdl libsdl_net opusfile)
|
||||
packages+=(coreutils autogen autoconf automake pkgconfig libpng ncurses libsdl2 libsdl2_net opusfile)
|
||||
|
|
|
@ -2,6 +2,6 @@
|
|||
# MSYS2 only supports the current latest releases of Clang and GCC, so we disable version customization
|
||||
packages+=(autogen autoconf base-devel automake-wrapper binutils)
|
||||
pkg_type=$([[ "${bits}" == "64" ]] && echo "x86_64" || echo "i686")
|
||||
for pkg in pkg-config libtool libpng zlib ncurses pdcurses SDL SDL_net opusfile; do
|
||||
for pkg in pkg-config libtool libpng zlib ncurses pdcurses SDL2 SDL2_net opusfile; do
|
||||
packages+=("mingw-w64-${pkg_type}-${pkg}")
|
||||
done
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
# Package repo: https://www.archlinux.org/packages/
|
||||
# Arch offers 32-bit versions of SDL (but not others)
|
||||
packages+=(xvfb libtool ncurses sdl_net opusfile)
|
||||
[[ "${bits}" == "32" ]] && packages+=(lib32-sdl) || packages+=(sdl)
|
||||
packages+=(xvfb libtool ncurses sdl2_net opusfile)
|
||||
[[ "${bits}" == "32" ]] && packages+=(lib32-sdl2) || packages+=(sdl2)
|
||||
|
|
|
@ -1,2 +1,2 @@
|
|||
# Package repo: https://repology.org/projects/?inrepo=vcpkg
|
||||
packages+=(libpng pdcurses sdl1 sdl1-net opusfile)
|
||||
packages+=(libpng pdcurses sdl2 sdl2-net opusfile)
|
||||
|
|
|
@ -3,8 +3,7 @@
|
|||
packages+=(devel_basis xvfb libtool opusfile)
|
||||
|
||||
if [[ "${bits}" == "32" ]]; then
|
||||
packages+=(ncurses-devel-32bit libSDL-devel-32bit libSDL_net-devel-32bit)
|
||||
packages+=(ncurses-devel-32bit libSDL2-devel-32bit libSDL2_net-devel-32bit)
|
||||
else
|
||||
packages+=(ncurses-devel SDL SDL_net)
|
||||
packages+=(ncurses-devel SDL2 SDL2_net)
|
||||
fi
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue