From c433876875a19de301d7ce799153c437d8bd1f1d Mon Sep 17 00:00:00 2001 From: Lctrs Date: Mon, 6 Jul 2020 13:05:39 +0200 Subject: [PATCH] Add net.rpcs3.RPCS3 --- .editorconfig | 11 +++ .gitignore | 3 + .gitmodules | 3 + flathub.json | 3 + net.rpcs3.RPCS3.yaml | 159 +++++++++++++++++++++++++++++++++++++++++++ shared-modules | 1 + 6 files changed, 180 insertions(+) create mode 100644 .editorconfig create mode 100644 .gitignore create mode 100644 .gitmodules create mode 100644 flathub.json create mode 100644 net.rpcs3.RPCS3.yaml create mode 160000 shared-modules diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 0000000..7fbc9f3 --- /dev/null +++ b/.editorconfig @@ -0,0 +1,11 @@ +root = true + +[*] +charset = utf-8 +indent_size = 4 +indent_style = space +insert_final_newline = true +trim_trailing_whitespace = true + +[*.yaml] +indent_size = 2 diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..1128399 --- /dev/null +++ b/.gitignore @@ -0,0 +1,3 @@ +/.flatpak-builder/ +/.build/ +/repo/ diff --git a/.gitmodules b/.gitmodules new file mode 100644 index 0000000..1e7a990 --- /dev/null +++ b/.gitmodules @@ -0,0 +1,3 @@ +[submodule "shared-modules"] + path = shared-modules + url = https://github.com/flathub/shared-modules.git diff --git a/flathub.json b/flathub.json new file mode 100644 index 0000000..637604e --- /dev/null +++ b/flathub.json @@ -0,0 +1,3 @@ +{ + "only-arches": ["x86_64"] +} diff --git a/net.rpcs3.RPCS3.yaml b/net.rpcs3.RPCS3.yaml new file mode 100644 index 0000000..c8a999f --- /dev/null +++ b/net.rpcs3.RPCS3.yaml @@ -0,0 +1,159 @@ +id: "net.rpcs3.RPCS3" +runtime: "org.kde.Platform" +runtime-version: "5.14" +sdk: "org.kde.Sdk" +command: "rpcs3" +rename-desktop-file: "rpcs3.desktop" +rename-appdata-file: "rpcs3.appdata.xml" +rename-icon: "rpcs3" +finish-args: + - "--share=ipc" + - "--socket=wayland" + - "--socket=fallback-x11" + - "--socket=pulseaudio" + - "--share=network" + - "--device=all" + - "--filesystem=host:ro" + - "--talk-name=org.a11y.Bus" +modules: + - "shared-modules/glu/glu-9.json" + - "shared-modules/glew/glew.json" + + - name: "lynx" + config-opts: + - "--disable-addrlist-page" + - "--disable-alt-bindings" + - "--disable-bibp-urls" + - "--disable-config-info" + - "--disable-dired" + - "--disable-file-upload" + - "--disable-finger" + - "--disable-forms-options" + - "--disable-ftp" + - "--disable-gopher" + - "--disable-idna" + - "--disable-locale-charset" + - "--disable-long-list" + - "--disable-menu-options" + - "--disable-news" + - "--disable-parent-dir-refs" + - "--disable-partial" + - "--disable-persistent-cookies" + - "--disable-prettysrc" + - "--disable-progressbar" + - "--disable-read-eta" + - "--disable-rpath-hack" + - "--disable-scrollbar" + - "--disable-session-cache" + - "--disable-sessions" + - "--disable-source-cache" + - "--disable-trace" + cleanup: + - "*" + sources: + - type: "archive" + url: "https://invisible-mirror.net/archives/lynx/tarballs/lynx2.8.9rel.1.tar.bz2" + sha256: "387f193d7792f9cfada14c60b0e5c0bff18f227d9257a39483e14fa1aaf79595" + + - name: "xmlto" + cleanup: + - "*" + sources: + - type: "archive" + url: "https://releases.pagure.org/xmlto/xmlto-0.0.28.tar.bz2" + sha256: "1130df3a7957eb9f6f0d29e4aa1c75732a7dfb6d639be013859b5c7ec5421276" + + - name: "xdg-utils" + config-opts: + - "--prefix=/app" + cleanup: + - "/bin/xdg-desktop-menu" + - "/bin/xdg-desktop-icon" + - "/bin/xdg-icon-resource" + - "/bin/xdg-open" + - "/bin/xdg-email" + - "/bin/xdg-screensaver" + - "/bin/xdg-settings" + - "/share" + sources: + - type: "git" + url: "https://gitlab.freedesktop.org/xdg/xdg-utils.git" + tag: "v1.1.3" + commit: "159fc37075db2decf446f453fe1a796da6921aad" + + - name: "libevdev" + buildsystem: "meson" + config-opts: + - "-Dtests=disabled" + - "-Ddocumentation=disabled" + cleanup: + - "/bin" + - "/include" + - "/lib/pkgconfig" + - "/share" + sources: + - type: "git" + url: "https://gitlab.freedesktop.org/libevdev/libevdev.git" + tag: "libevdev-1.9.0" + commit: "468760ba11438734912f793b1de00cb0f243497f" + + - name: "rpcs3-llvm" + buildsystem: "cmake-ninja" + builddir: true + build-options: + cxxflags: "-msse -msse2" + env: + CC: "clang" + CXX: "clang++" + config-opts: + - "-DCMAKE_BUILD_TYPE=Release" + - "-DBUILD_SHARED_LIBS=OFF" + - "-DLLVM_CCACHE_BUILD=ON" + - "-DLLVM_TARGETS_TO_BUILD='X86'" + - "-DLLVM_BUILD_RUNTIME=OFF" + - "-DLLVM_BUILD_TOOLS=OFF" + - "-DLLVM_INCLUDE_DOCS=OFF" + - "-DLLVM_INCLUDE_EXAMPLES=OFF" + - "-DLLVM_INCLUDE_TESTS=OFF" + - "-DLLVM_INCLUDE_TOOLS=OFF" + - "-DLLVM_INCLUDE_UTILS=OFF" + - "-DLLVM_USE_INTEL_JITEVENTS=ON" + - "-DLLVM_ENABLE_Z3_SOLVER=OFF" + - "-DCMAKE_CXX_STANDARD=20" + cleanup: + - "/bin" + - "/include" + - "/lib/cmake" + sources: + - type: "git" + url: "https://github.com/RPCS3/llvm-mirror.git" + commit: "bb9faf3c8b4e0de05d07cbe623a1bf45874b5174" + + - name: "rpcs3" + buildsystem: "cmake-ninja" + build-options: + cflags: "-fuse-linker-plugin -fuse-ld=gold" + cxxflags: "-fuse-linker-plugin -fuse-ld=gold" + config-opts: + - "-DCMAKE_BUILD_TYPE=RelWithDebInfo" + - "-DBUILD_LLVM_SUBMODULE=OFF" + - "-DUSE_NATIVE_INSTRUCTIONS=OFF" + - "-DUSE_PRECOMPILED_HEADERS=OFF" + - "-DUSE_SYSTEM_FFMPEG=ON" + - "-DUSE_SYSTEM_LIBPNG=ON" + - "-DUSE_SYSTEM_ZLIB=ON" + - "-DUSE_SYSTEM_CURL=ON" + post-install: + - | + set -eux; + + sed -i 's|RPCS3|net.rpcs3.RPCS3|' ${FLATPAK_DEST}/share/metainfo/rpcs3.appdata.xml; + + COMM_TAG="$(grep 'version{.*}' rpcs3/rpcs3_version.cpp | awk -F[\{,] '{printf "%d.%d.%d", $2, $3, $4}')"; + COMM_COUNT="$(git rev-list --count HEAD)"; + COMM_HASH="$(git rev-parse --short=8 HEAD)"; + sed -i 's|||' ${FLATPAK_DEST}/share/metainfo/rpcs3.appdata.xml; + sources: + - type: "git" + url: "https://github.com/RPCS3/rpcs3.git" + commit: "05dc6ad610a5bf763285d0d357aaf2c298fc043e" diff --git a/shared-modules b/shared-modules new file mode 160000 index 0000000..b177b99 --- /dev/null +++ b/shared-modules @@ -0,0 +1 @@ +Subproject commit b177b99b966c8640e1788c9b8f4438c2993a2978