From 792bf73e79213dc24ea9a3df94a5480cfc7238b4 Mon Sep 17 00:00:00 2001 From: Persson-dev Date: Fri, 25 Jul 2025 10:50:38 +0200 Subject: [PATCH] split xmake module in its own file --- flatpak/org.zulianc.jminos.yml | 13 +------------ flatpak/xmake.yml | 12 ++++++++++++ 2 files changed, 13 insertions(+), 12 deletions(-) create mode 100644 flatpak/xmake.yml diff --git a/flatpak/org.zulianc.jminos.yml b/flatpak/org.zulianc.jminos.yml index ec07409..caad499 100644 --- a/flatpak/org.zulianc.jminos.yml +++ b/flatpak/org.zulianc.jminos.yml @@ -9,18 +9,7 @@ finish-args: - --device=dri modules: - - name: xmake - buildsystem: simple - no-autogen: true - cleanup: ['*'] - build-commands: - - ./configure --prefix=/app - - make -j $(FLATPAK_BUILDER_N_JOBS) - - prefix=/app ./scripts/get.sh __local__ __install_only__ - sources: - - type: git - url: https://github.com/xmake-io/xmake.git - tag: v3.0.1 + - xmake.yml - name: jminos buildsystem: simple diff --git a/flatpak/xmake.yml b/flatpak/xmake.yml new file mode 100644 index 0000000..b9797cf --- /dev/null +++ b/flatpak/xmake.yml @@ -0,0 +1,12 @@ +name: xmake +buildsystem: simple +no-autogen: true +cleanup: ['*'] +build-commands: + - ./configure --prefix=/app + - make -j $(FLATPAK_BUILDER_N_JOBS) + - prefix=/app ./scripts/get.sh __local__ __install_only__ +sources: + - type: git + url: https://github.com/xmake-io/xmake.git + tag: v3.0.1