0
Fork 0
mirror of https://codeberg.org/librewolf/source.git synced 2024-12-22 13:43:04 -05:00
LibreWolf/Makefile

124 lines
3.9 KiB
Makefile
Raw Normal View History

.PHONY : help check all clean veryclean dir bootstrap fetch build package run update setup-wasi
2021-11-19 12:41:54 -05:00
version:=$(shell cat ./version)
release:=$(shell cat ./release)
2021-11-19 12:41:54 -05:00
2021-11-19 14:46:23 -05:00
## simplistic archive format selection
#archive_create=tar cfJ
#ext=.tar.xz
archive_create:=tar cfz
ext:=.tar.gz
2021-11-19 14:46:23 -05:00
ff_source_dir:=firefox-$(version)
ff_source_tarball:=firefox-$(version).source.tar.xz
2021-11-19 14:46:23 -05:00
lw_source_dir:=librewolf-$(version)-$(release)
lw_source_tarball:=librewolf-$(version)-$(release).source$(ext)
help :
2021-12-27 18:55:58 -05:00
@echo "use: $(MAKE) [all] [check] [clean] [veryclean] [bootstrap] [build] [package] [run]"
2021-11-19 12:41:54 -05:00
@echo ""
2022-01-13 14:34:48 -05:00
@echo " all - Make LibreWolf source archive ${version}-${release}."
@echo " check - Check if there is a new version of Firefox."
@echo " update - Update the git submodules and README.md."
2021-11-19 12:41:54 -05:00
@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."
2022-02-09 07:04:18 -05:00
@echo " setup-wasi - Setup WASM sandbox libraries (required on Linux)."
2022-01-13 14:34:48 -05:00
@echo ""
@echo " fetch - fetch Firefox source archive."
@echo " dir - extract Firefox and apply the patches, creating a"
@echo " ready to build librewolf folder."
2022-02-09 07:04:18 -05:00
@echo " build - Build LibreWolf (requires bootstrapped build environment)."
@echo " package - Package LibreWolf (requires build)."
@echo " run - Run LibreWolf (requires build)."
@echo ""
2021-11-19 12:41:54 -05:00
2022-02-09 07:04:18 -05:00
check :
python3 scripts/update-version.py
2021-12-29 00:31:33 -05:00
@echo "Current release:" $$(cat ./release)
2021-11-19 12:41:54 -05:00
2022-01-08 16:07:06 -05:00
update : README.md
git submodule update --recursive --remote
README.md : README.md.in ./version ./release
@sed "s/__VERSION__/$(version)/g" < $< > tmp
@sed "s/__RELEASE__/$(release)/g" < tmp > $@
@rm -f tmp
2022-02-09 07:04:18 -05:00
@echo "Updated README.md from README.md.in"
2022-01-08 16:07:06 -05:00
all : $(lw_source_tarball)
2021-11-19 14:46:23 -05:00
clean :
rm -rf *~ public_key.asc $(ff_source_dir) $(lw_source_dir) $(lw_source_tarball) $(lw_source_tarball).sha256sum
2021-11-19 14:46:23 -05:00
veryclean : clean
rm -f $(ff_source_tarball) $(ff_source_tarball).asc
2022-02-05 17:27:42 -05:00
#
# The actual build stuff
#
fetch : $(ff_source_tarball)
2021-11-19 14:46:23 -05:00
$(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)
2021-11-21 04:23:21 -05:00
$(lw_source_tarball) : $(lw_source_dir)
rm -f $(lw_source_tarball)
$(archive_create) $(lw_source_tarball) $(lw_source_dir)
2022-02-05 17:27:42 -05:00
touch $(lw_source_dir)
sha256sum $(lw_source_tarball) > $(lw_source_tarball).sha256sum
cat $(lw_source_tarball).sha256sum
2021-11-25 10:24:55 -05:00
2022-02-03 05:20:10 -05:00
debs=python3 python3-dev python3-pip
rpms=python3 python3-devel
bootstrap : $(lw_source_dir)
2022-02-03 05:20:10 -05:00
(sudo apt -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)
2022-02-09 07:04:18 -05:00
setup-wasi :
./scripts/setup-wasi-linux.sh
2022-02-05 17:27:42 -05:00
dir : $(lw_source_dir)
2022-02-05 17:27:42 -05:00
build : $(lw_source_dir)
(cd $(lw_source_dir) && ./mach build)
2022-01-13 14:34:48 -05:00
package :
(cd $(lw_source_dir) && ./mach package)
2022-05-03 15:53:46 -05:00
(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 .
2022-01-13 14:34:48 -05:00
run :
(cd $(lw_source_dir) && ./mach run)