2022-01-08 14:15:04 -05:00
|
|
|
## handle different upstreams, like developer,nightly, or distro specific upstream cases
|
2022-01-08 16:07:06 -05:00
|
|
|
upstream_filename=bootstrap.py
|
2022-01-08 17:19:16 -05:00
|
|
|
upstream_dirname=mozilla-unified
|
2022-01-08 14:15:04 -05:00
|
|
|
$(upstream_filename) :
|
2022-01-08 16:07:06 -05:00
|
|
|
wget -q https://hg.mozilla.org/mozilla-central/raw-file/default/python/mozboot/bin/bootstrap.py
|
2022-01-08 14:15:04 -05:00
|
|
|
##
|
2022-01-08 15:57:39 -05:00
|
|
|
clean_upstream_file :
|
|
|
|
rm -f $(upstream_filename)
|
|
|
|
clean_upstream_dir :
|
|
|
|
rm -rf $(upstream_dirname)
|
|
|
|
create_lw_from_upstream_dir :
|
2022-01-08 16:07:06 -05:00
|
|
|
python3 bootstrap.py --no-interactive --application-choice=browser
|
2022-01-08 17:19:16 -05:00
|
|
|
mv $(upstream_dirname) librewolf-$(version)
|
2022-01-08 15:57:39 -05:00
|
|
|
|