0
Fork 0
mirror of https://codeberg.org/librewolf/source.git synced 2024-12-21 21:23:08 -05:00
LibreWolf/Makefile
2024-11-29 15:47:46 +01:00

247 lines
7 KiB
Makefile

docker_targets=docker-build-image docker-run-build-job docker-remove-image
woodpecker_targets=fetch-upstream-woodpecker check-patchfail-woodpecker
testing_targets=full-test test test-linux test-macos test-windows
.PHONY : help moztree check all clean veryclean distclean patches dir bootstrap fetch build package run update setup-wasi check-patchfail check-fuzz fixfuzz $(docker_targets) $(woodpecker_targets) $(testing_targets)
version:=$(shell cat ./version)
release:=$(shell cat ./release)
## simplistic archive format selection
#archive_create=tar cfJ
#ext=.tar.xz
archive_create:=tar cfz
ext:=.tar.gz
ff_source_dir:=firefox-$(version)
ff_source_tarball:=firefox-$(version).source.tar.xz
lw_source_dir:=librewolf-$(version)-$(release)
lw_source_tarball:=librewolf-$(version)-$(release).source$(ext)
help :
@echo "use: $(MAKE) [all] [check] [clean] [veryclean] [bootstrap] [build] [package] [run]"
@echo ""
@echo " all - Make LibreWolf source archive ${version}-${release}."
@echo ""
@echo " check - Check if there is a new version of Firefox."
@echo " update - Update the git submodules."
@echo ""
@echo " clean - Clean everything except the upstream firefox tarball."
@echo " veryclean - Clean everything including the firefox tarball."
@echo ""
@echo " bootstrap - Bootstrap the build environment."
@echo " setup-wasi - Setup WASM sandbox libraries (required on Linux)."
@echo ""
@echo " fetch - fetch Firefox source archive."
@echo " dir - extract Firefox and apply the patches, creating a"
@echo " ready to build librewolf folder."
@echo " build - Build LibreWolf (requires bootstrapped build environment)."
@echo " package - Package LibreWolf (requires build)."
@echo " run - Run LibreWolf (requires build)."
@echo ""
@echo " check-patchfail - check patches for errors."
@echo " check-fuzz - check patches for fuzz."
@echo " fixfuz - fix the fuzz."
@echo ""
@echo ""
@echo "docker:" $(docker_targets)
@echo ""
@echo ""
@echo "Maintainer commands:"
@echo ""
@echo " patches - Just make the LibreWolf source directory (download, extract, patch)"
@echo " all - build LW tarball"
@echo ""
@echo " clean - remove all cruft except LW source tree"
@echo " veryclean - remove all except download FF tarball"
@echo " distclean - remove all including downloads"
@echo ""
@echo " moztree - show LW source tree"
@echo " check - checking for new versions of FF"
@echo " update - update settings submodule"
@echo ""
moztree :
(cd $(lw_source_dir) && ../scripts/moztree )
patches :
make veryclean
make dir
# building...
all : $(lw_source_tarball)
# cleaning up..
clean :
rm -rf *~ public_key.asc $(ff_source_dir) $(lw_source_tarball) $(lw_source_tarball).sha256sum $(lw_source_tarball).sha512sum firefox-$(version) patchfail.out patchfail-fuzz.out
veryclean : clean
rm -rf $(lw_source_dir)
distclean : veryclean
rm -f $(ff_source_tarball) $(ff_source_tarball).asc
# checking for new versions...
check :
-bash -c ./scripts/update-settings-module.sh
python3 scripts/update-version.py
cut -f1 version > version.tmp
mv -vf version.tmp version
@echo ""
@echo "Firefox version : " $$(cat version)
@echo "LibreWolf release : " $$(cat release)
@echo ""
# update settings submodule...
update :
-bash -c ./scripts/update-settings-module.sh
#
# The actual build stuff
#
fetch : $(ff_source_tarball)
$(ff_source_tarball) :
wget -qO public_key.asc "https://keys.openpgp.org/vks/v1/by-fingerprint/14F26682D0916CDD81E37B6D61B7B526D98F0353"
gpg --import public_key.asc
rm -f public_key.asc
wget -q "https://archive.mozilla.org/pub/firefox/releases/$(version)/source/firefox-$(version).source.tar.xz.asc" -O $(ff_source_tarball).asc
wget -q "https://archive.mozilla.org/pub/firefox/releases/$(version)/source/firefox-$(version).source.tar.xz" -O $(ff_source_tarball)
gpg --verify $(ff_source_tarball).asc $(ff_source_tarball)
$(lw_source_dir) : $(ff_source_tarball) ./version ./release scripts/librewolf-patches.py assets/mozconfig assets/patches.txt
rm -rf $(ff_source_dir) $(lw_source_dir)
tar xf $(ff_source_tarball)
mv $(ff_source_dir) $(lw_source_dir)
python3 scripts/librewolf-patches.py $(version) $(release)
$(lw_source_tarball) : $(lw_source_dir)
rm -f $(lw_source_tarball)
tar cf librewolf-$(version)-$(release).source.tar $(lw_source_dir)
pigz -6 librewolf-$(version)-$(release).source.tar
touch $(lw_source_dir)
sha256sum $(lw_source_tarball) > $(lw_source_tarball).sha256sum
cat $(lw_source_tarball).sha256sum
sha256sum -c $(lw_source_tarball).sha256sum
sha512sum $(lw_source_tarball) > $(lw_source_tarball).sha512sum
cat $(lw_source_tarball).sha512sum
sha512sum -c $(lw_source_tarball).sha512sum
[ "$(SIGNING_KEY)" != "" ] && cp -v $(SIGNING_KEY) pk.asc ; true
if [ -f pk.asc ]; then gpg --import pk.asc; gpg --detach-sign $(lw_source_tarball) && ls -lh $(lw_source_tarball).sig; fi
ls -lh $(lw_source_tarball)*
debs=python3 python3-dev python3-pip
rpms=python3 python3-devel
bootstrap : $(lw_source_dir)
(sudo apt-get -y install $(debs); true)
(sudo rpm -y install $(rpms); true)
(cd $(lw_source_dir) && MOZBUILD_STATE_PATH=$$HOME/.mozbuild ./mach --no-interactive bootstrap --application-choice=browser)
setup-wasi :
./scripts/setup-wasi-linux.sh
dir : $(lw_source_dir)
build : $(lw_source_dir)
(cd $(lw_source_dir) && ./mach build)
package :
(cd $(lw_source_dir) && cat browser/locales/shipped-locales | xargs ./mach package-multi-locale --locales)
cp -v $(lw_source_dir)/obj-*/dist/librewolf-$(version)-$(release).en-US.*.tar.bz2 .
run :
(cd $(lw_source_dir) && ./mach run)
check-patchfail:
sh -c "./scripts/check-patchfail.sh" > patchfail.out
check-fuzz:
-sh -c "./scripts/check-patchfail.sh --fuzz=0" > patchfail-fuzz.out
fixfuzz :
sh -c "./scripts/fuzzfail.sh"
#
# docker
#
build_image=librewolf-build-image
docker-build-image :
docker build --no-cache -t $(build_image) - < assets/Dockerfile
docker-run-build-job :
docker run -v $$(pwd):/output --rm $(build_image) sh -c "git pull && make fetch && make build package && cp -v ./*.bz2 /output"
docker-remove-image :
docker rmi $(build_image)
setup-debian :
apt-get -y install mercurial python3 python3-dev python3-pip curl wget dpkg-sig libssl-dev zstd libxml2-dev
setup-fedora :
dnf -y install python3 curl wget zstd python3-devel python3-pip mercurial openssl-devel libxml2-devel
#
# for .woodpecker.yml
#
check-patchfail-woodpecker :
( sh -c "./scripts/check-patchfail.sh" > patchfail.out ; exit_code=$$? ; \
cat patchfail.out ; rm -f patchfail.out ; exit $$exit_code )
fetch-upstream-woodpecker : fetch
#
# testing_targets=full-test test
#
test : full-test
# full-test: produce the bz2 artifact using bsys6 from scratch
full-test : $(lw_source_tarball)
${MAKE} -f assets/testing.mk bsys6_x86_64_linux_bz2_artifact
test-linux : full-test
test-macos : $(lw_source_tarball)
${MAKE} -f assets/testing.mk bsys6_x86_64_macos_dmg_artifact
test-windows : $(lw_source_tarball)
${MAKE} -f assets/testing.mk bsys6_x86_64_windows_zip_artifact