From 78dcebb1ebf8f6c493c7098c6156adfb9426b029 Mon Sep 17 00:00:00 2001 From: Bert van der Weerd Date: Sun, 25 Sep 2022 21:15:25 +0200 Subject: [PATCH] added wine as a dependency (for now) --- linux-mar/Makefile | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/linux-mar/Makefile b/linux-mar/Makefile index 9437a86..78414fc 100644 --- a/linux-mar/Makefile +++ b/linux-mar/Makefile @@ -11,9 +11,10 @@ help : @echo "use: make [help] [all] [clean] [build] [package] [artifacts]" @echo "" @echo " fetch - get the latest tarball. must be done first, at least once." + @echo "" @echo " all - Build librewolf and it's windows artifacts." @echo " build - Perform './mach build' on the extracted tarball." - @echo " package - multilocale package." + @echo " package - Make the multilocale package." @echo " artifacts - Create the setup.exe and the portable.zip." @echo "" @echo " clean - Remove output files and temporary files." @@ -45,7 +46,6 @@ build : dir (cd librewolf-$(full_version) && ./mach build) package : dir -# (cd librewolf-$(full_version) && ./mach package) ( cd librewolf-$(full_version) && echo 'Packaging... (output hidden)' && \ cat browser/locales/shipped-locales | xargs ./mach package-multi-locale --locales >/dev/null ) @@ -82,10 +82,10 @@ bootstrap : dir winsdk true ) setup-debian : - apt-get -y install mercurial python3 python3-dev python3-pip curl wget dpkg-sig msitools p7zip-full upx-ucl libssl-dev zstd + apt-get -y install mercurial python3 python3-dev python3-pip curl wget dpkg-sig msitools p7zip-full upx-ucl libssl-dev zstd wine setup-fedora : - dnf -y install python3 curl wget zstd python3-devel python3-pip mercurial msitools p7zip upx openssl-devel + dnf -y install python3 curl wget zstd python3-devel python3-pip mercurial msitools p7zip upx openssl-devel wine # # Build the artifacts in a seperate Makefile