0
Fork 0
mirror of https://codeberg.org/librewolf/source.git synced 2024-12-22 05:33:03 -05:00

Changed to tar.gz tarballs, tar.xz files take too long to compress.

This commit is contained in:
Bert van der Weerd 2021-11-20 11:07:22 +01:00
parent 8ee6c8f140
commit b854b6f5a4
No known key found for this signature in database
GPG key ID: 4CFABB96ADE0F5B1
2 changed files with 10 additions and 13 deletions

View file

@ -7,5 +7,5 @@ build-job:
- make all
artifacts:
paths:
- librewolf-*.source.tar.xz
- librewolf-*.source.*

View file

@ -1,4 +1,4 @@
.PHONY : all help clean veryclean fetch extract librewolf-patches check init
.PHONY : all help clean veryclean librewolf-patches check
version_file=./version
@ -8,22 +8,20 @@ version:=$(shell cat $(version_file))
## simplistic archive format selection
archive_create=tar cfJ
ext=.tar.xz
#archive_create=tar cfz
#ext=.tar.gz
archive_create=tar cfz
ext=.tar.gz
#archive_create=zip -r9
#ext=.zip
help :
@echo "use: make [all] [check] [clean] [veryclean] [init]"
@echo "use: make [all] [check] [clean] [veryclean]"
@echo ""
@echo " all - make librewolf source archive ${version}."
@echo " check - check if there is a new version of Firefox."
@echo " all - Make librewolf source archive ${version}."
@echo " check - Check if there is a new version of Firefox."
@echo ""
@echo " clean - clean everything except the upstream firefox tarball."
@echo " veryclean - clean everything and the firefox tarball."
@echo ""
@echo " init - set up local build environment, takes a long time."
@echo " clean - Clean everything except the upstream firefox tarball."
@echo " veryclean - Clean everything and the firefox tarball."
check :
@ -41,8 +39,7 @@ veryclean : clean
rm -f firefox-$(version).source.tar.xz
fetch :
rm -f firefox-$(version).source.tar.xz
firefox-$(version).source.tar.xz :
wget -q https://archive.mozilla.org/pub/firefox/releases/$(version)/source/firefox-$(version).source.tar.xz