mirror of
https://github.com/RetroDECK/RetroDECK.git
synced 2025-02-17 03:45:38 +00:00
VULKAN: testing some libraries
This commit is contained in:
parent
fe830bd54f
commit
13b4553ab9
|
@ -154,6 +154,94 @@ modules:
|
|||
url: https://github.com/mikefarah/yq/releases/download/v4.33.3/yq_linux_amd64
|
||||
sha256: 4ee662847c588c3ef2fec8bfb304e8739e3dbaba87ccb9a608d691c88f5b64dc
|
||||
|
||||
###### Trying to add the former libraries to see if they solve the vulkan issue
|
||||
|
||||
# mesa repo got a double certificate issue and gnutils cannot handle that so GLU download fails,
|
||||
# this affects even the shared-modules's libglu so I have to replace it temporarly
|
||||
# more info there: https://gitlab.com/gnutls/gnutls/-/issues/1335
|
||||
# dependency of: RETROARCH, CEMU, RPCS3, XEMU
|
||||
- name: libglu
|
||||
buildsystem: meson
|
||||
cleanup:
|
||||
- /include
|
||||
- /lib/debug
|
||||
- /lib/pkgconfig
|
||||
- /lib/*.a
|
||||
sources:
|
||||
- type: archive
|
||||
url: https://ftp.osuosl.org/pub/blfs/conglomeration/glu/glu-9.0.3.tar.xz
|
||||
sha256: bd43fe12f374b1192eb15fe20e45ff456b9bc26ab57f0eee919f96ca0f8a330f
|
||||
# - type: archive
|
||||
# url: https://mesa.freedesktop.org/archive/glu/glu-9.0.3.tar.xz
|
||||
# sha256: bd43fe12f374b1192eb15fe20e45ff456b9bc26ab57f0eee919f96ca0f8a330f
|
||||
# x-checker-data:
|
||||
# type: anitya
|
||||
# project-id: 13518
|
||||
# stable-only: true
|
||||
# url-template: https://mesa.freedesktop.org/archive/glu/glu-$version.tar.xz
|
||||
|
||||
- name: libgudev
|
||||
buildsystem: meson
|
||||
config-opts:
|
||||
- -Dtests=disabled
|
||||
- -Dvapi=disabled
|
||||
- -Dintrospection=disabled
|
||||
- -Dgtk_doc=false
|
||||
cleanup:
|
||||
- /include
|
||||
- /etc
|
||||
- /libexec
|
||||
- /sbin
|
||||
- /lib/pkgconfig
|
||||
- /lib/systemd
|
||||
- /man
|
||||
- /share/aclocal
|
||||
- /share/doc
|
||||
- /share/gtk-doc
|
||||
- /share/man
|
||||
- /share/pkgconfig
|
||||
- '*.la'
|
||||
- '*.a'
|
||||
sources:
|
||||
- type: archive
|
||||
url: https://ftp.osuosl.org/pub/blfs/conglomeration/libgudev/libgudev-237.tar.xz
|
||||
sha256: 0d06b21170d20c93e4f0534dbb9b0a8b4f1119ffb00b4031aaeb5b9148b686aa
|
||||
|
||||
- name: glslang
|
||||
buildsystem: cmake-ninja
|
||||
config-opts:
|
||||
- -DCMAKE_BUILD_TYPE=Release
|
||||
- -DENABLE_CTEST=OFF
|
||||
# TODO: Does Cemu benefit from SPIRV-Tools-opt
|
||||
- -DENABLE_OPT=OFF
|
||||
cleanup:
|
||||
- /include
|
||||
- /lib/cmake
|
||||
sources:
|
||||
- type: archive
|
||||
url: https://github.com/KhronosGroup/glslang/archive/14.2.0.tar.gz
|
||||
sha256: 14a2edbb509cb3e51a9a53e3f5e435dbf5971604b4b833e63e6076e8c0a997b5
|
||||
x-checker-data:
|
||||
type: anitya
|
||||
stable-only: true
|
||||
project-id: 205796
|
||||
url-template: https://github.com/KhronosGroup/glslang/archive/$version.tar.gz
|
||||
|
||||
- name: glm
|
||||
buildsystem: cmake-ninja
|
||||
cleanup: ['*']
|
||||
no-make-install: true
|
||||
post-install:
|
||||
- install -d ${FLATPAK_DEST}/include
|
||||
- cp -R glm ${FLATPAK_DEST}/include
|
||||
- cp -R cmake/glm ${FLATPAK_DEST}/lib/cmake
|
||||
sources:
|
||||
- type: archive
|
||||
url: https://github.com/g-truc/glm/releases/download/0.9.9.8/glm-0.9.9.8.zip
|
||||
sha256: 37e2a3d62ea3322e43593c34bae29f57e3e251ea89f4067506c94043769ade4c
|
||||
|
||||
################################################################################
|
||||
|
||||
# RetroArch
|
||||
# https://retroarch.com/index.php?page=platforms
|
||||
|
||||
|
|
Loading…
Reference in a new issue