net.rpcs3.RPCS3/net.rpcs3.RPCS3.yaml

110 lines
3.3 KiB
YAML
Raw Normal View History

2021-02-21 15:27:24 +00:00
id: net.rpcs3.RPCS3
runtime: org.kde.Platform
2022-09-09 10:03:53 +00:00
runtime-version: 5.15-22.08
2021-02-21 15:27:24 +00:00
sdk: org.kde.Sdk
2021-03-30 10:00:15 +00:00
sdk-extensions:
2023-01-02 13:49:30 +00:00
- org.freedesktop.Sdk.Extension.llvm15
2021-02-21 15:27:24 +00:00
command: rpcs3
rename-desktop-file: rpcs3.desktop
2021-05-19 17:41:18 +00:00
rename-appdata-file: rpcs3.metainfo.xml
2021-02-21 15:27:24 +00:00
rename-icon: rpcs3
2020-07-06 11:05:39 +00:00
finish-args:
- --device=all
- --filesystem=home:ro
- --filesystem=/media
- --filesystem=/run/media
2021-02-21 15:27:24 +00:00
- --share=ipc
- --socket=fallback-x11
- --socket=pulseaudio
- --socket=wayland
2021-02-21 15:27:24 +00:00
- --share=network
- --talk-name=org.freedesktop.ScreenSaver
- --talk-name=org.mate.ScreenSaver
add-extensions:
org.freedesktop.Platform.ffmpeg-full:
2021-02-21 15:27:24 +00:00
directory: lib/ffmpeg
add-ld-path: .
2022-09-09 10:03:53 +00:00
version: '22.08'
autodownload: true
autodelete: false
cleanup-commands:
2021-02-21 15:27:24 +00:00
- mkdir -p ${FLATPAK_DEST}/lib/ffmpeg
2022-10-11 17:15:13 +00:00
2020-07-06 11:05:39 +00:00
modules:
2021-02-21 15:27:24 +00:00
- shared-modules/glu/glu-9.json
- shared-modules/glew/glew.json
2020-07-06 11:05:39 +00:00
2021-02-21 15:27:24 +00:00
- name: libevdev
buildsystem: meson
2020-07-06 11:05:39 +00:00
config-opts:
2021-02-21 15:27:24 +00:00
- -Dtests=disabled
- -Ddocumentation=disabled
2020-07-06 11:05:39 +00:00
cleanup:
2021-02-21 15:27:24 +00:00
- /bin
- /include
- /lib/pkgconfig
- /share
2020-07-06 11:05:39 +00:00
sources:
2021-02-21 15:27:24 +00:00
- type: archive
url: https://www.freedesktop.org/software/libevdev/libevdev-1.13.0.tar.xz
sha256: 9edf2006cc86a5055279647c38ec923d11a821ee4dc2c3033e8d20e8ee237cd9
x-checker-data:
2021-02-21 15:27:24 +00:00
type: anitya
project-id: 20540
2021-06-04 12:41:33 +00:00
stable-only: true
2021-02-21 15:27:24 +00:00
url-template: https://www.freedesktop.org/software/libevdev/libevdev-$version.tar.xz
2020-07-06 11:05:39 +00:00
2021-02-21 15:27:24 +00:00
- name: rpcs3
buildsystem: cmake-ninja
2021-09-01 09:08:00 +00:00
builddir: true
2020-07-06 11:05:39 +00:00
build-options:
2023-01-02 13:49:30 +00:00
append-ld-library-path: /usr/lib/sdk/llvm15/lib
append-path: /usr/lib/sdk/llvm15/bin
2022-10-11 17:15:13 +00:00
cflags: &optflags -O2 -g -pipe -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector-strong
-grecord-gcc-switches -fasynchronous-unwind-tables -fstack-clash-protection
-fcf-protection -fno-omit-frame-pointer
cflags-override: true
cxxflags: *optflags
cxxflags-override: true
2021-03-30 10:00:15 +00:00
env:
AR: llvm-ar
CC: clang
CXX: clang++
RANLIB: llvm-ranlib
ldflags: -fuse-ld=lld
2020-07-06 11:05:39 +00:00
config-opts:
2021-02-21 15:27:24 +00:00
- -DCMAKE_BUILD_TYPE=RelWithDebInfo
2023-04-08 09:09:16 +00:00
- -DBUILD_LLVM=ON
2021-02-21 15:27:24 +00:00
- -DUSE_NATIVE_INSTRUCTIONS=OFF
- -DUSE_PRECOMPILED_HEADERS=OFF
2021-06-04 12:41:33 +00:00
- -DUSE_SYSTEM_CURL=ON
2021-02-21 15:27:24 +00:00
- -DUSE_SYSTEM_FFMPEG=ON
- -DUSE_SYSTEM_LIBPNG=ON
2021-06-04 12:41:33 +00:00
- -DUSE_SYSTEM_ZLIB=ON
2022-10-11 17:15:13 +00:00
- -DITTAPI_SOURCE_DIR=/run/build/rpcs3/ittapi
2022-03-11 00:34:27 +00:00
- -Wno-dev
2020-07-06 11:05:39 +00:00
post-install:
2022-10-11 17:15:13 +00:00
- |-
set -eux
2020-07-06 11:05:39 +00:00
2022-10-11 17:15:13 +00:00
COMM_TAG="$(awk -F'[\{,]' '/version{.*}/{printf "%d.%d.%d", $2, $3, $4}' ../rpcs3/rpcs3_version.cpp)"
2020-07-06 11:05:39 +00:00
COMM_COUNT="$(git rev-list --count HEAD)";
COMM_HASH="$(git rev-parse --short=8 HEAD)";
sed -i 's|</component>|<releases><release date="'$(git show -s --format=%cs)'" version="'"${COMM_TAG}"'-'"${COMM_COUNT}"'-'"${COMM_HASH}"'"/></releases></component>|' ${FLATPAK_DEST}/share/metainfo/rpcs3.metainfo.xml
2020-07-06 11:05:39 +00:00
sources:
2021-02-21 15:27:24 +00:00
- type: git
url: https://github.com/RPCS3/rpcs3.git
branch: master
2023-04-14 01:43:16 +00:00
commit: 79d09d02ed4b4e7b5dc7984f1febf555f0615108
2022-10-11 17:15:13 +00:00
- type: git
url: https://github.com/intel/ittapi.git
branch: master
2023-03-21 01:45:48 +00:00
commit: 4a3762fbc517475bfb0586efc513e51c164108c9
2022-10-11 17:15:13 +00:00
dest: ittapi/ittapi
disable-shallow-clone: true
2022-11-18 14:37:55 +00:00
# remove git-lfs hook
- type: inline
dest: ittapi/ittapi/.git/hooks
dest-filename: post-checkout
contents: