build: add Alpine Linux support to installdeps

Add basic support for Alpine Linux to installdeps.

Signed-off-by: Rafael Kitover <rkitover@gmail.com>
This commit is contained in:
Rafael Kitover 2023-12-23 09:46:47 +00:00
parent db355126d3
commit 3c5348983b
No known key found for this signature in database
GPG Key ID: 08AB596679D86240
1 changed files with 12 additions and 0 deletions

View File

@ -179,6 +179,9 @@ linux_installdeps() {
nixos) nixos)
nixos_installdeps nixos_installdeps
;; ;;
alpine)
alpine_installdeps
;;
*) *)
error "Don't know how to install deps on your version of Linux" error "Don't know how to install deps on your version of Linux"
;; ;;
@ -1105,6 +1108,15 @@ gentoo_installdeps() {
build_instructions build_instructions
} }
alpine_installdeps() {
installing
check sudo apk add cmake ninja g++ ccache nasm gettext-dev zlib-dev mesa-dev sdl2-dev glu-dev sfml-dev wxwidgets-dev gtk+3.0-dev zip
build_instructions
}
windows_installdeps() { windows_installdeps() {
msys2=1 msys2=1