From 489576ce6bf9630909137d9cb8adcdbeda030926 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Malte=20J=C3=BCrgens?= Date: Sun, 19 Feb 2023 23:51:03 +0100 Subject: [PATCH] add msix target --- linux/Makefile | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/linux/Makefile b/linux/Makefile index 2c523dc..ac5a393 100644 --- a/linux/Makefile +++ b/linux/Makefile @@ -61,6 +61,9 @@ package : dir ( cd librewolf-$(full_version) && echo 'Packaging... (output hidden)' && \ cat browser/locales/shipped-locales | xargs ./mach package-multi-locale --locales >/dev/null ) +msix : dir + ( cd librewolf-$(full_version) && MAKEAPPX=~/.mozbuild/msix-packaging/makemsix ./mach repackage msix --publisher='CN=846D51B2-15A2-4033-86D1-071B877C86A7' --identity-name='31856maltejur.LibreWolf' --publisher-display-name='maltejur' ) + dir : librewolf-$(full_version) librewolf-$(full_version) : librewolf-$(full_version).source.tar.gz rm -rf $@ @@ -77,7 +80,7 @@ $(mozbuild)/vs.tar.zst : # cache this file bootstrap : dir winsdk (cd librewolf-$(full_version) && ./mach --no-interactive bootstrap --application-choice=browser) # Rust supports aarch64-linux-android, arm-linux-androideabi, i686-linux-android, thumbv7neon-linux-androideabi, x86_64-linux-android, x86_64-pc-windows-msvc, x86_64-unknown-linux-gnu targets. - ~/.cargo/bin/rustup target add x86_64-pc-windows-msvc + rustup target add x86_64-pc-windows-msvc ( export t=$$(pwd)/librewolf-$(full_version) && \ cd $(mozbuild) && \ $$t/mach artifact toolchain --from-build linux64-binutils && \