mirror of
https://github.com/pbatard/rufus.git
synced 2024-08-14 23:57:05 +00:00
[misc] move appx generation to Makefile
This commit is contained in:
parent
7ec8db5602
commit
a4b19ddf1a
4 changed files with 23 additions and 14 deletions
|
@ -1,5 +1,7 @@
|
|||
SUBDIRS = src
|
||||
TARGET = rufus
|
||||
TAGVER = $(shell git log --oneline | wc -l)
|
||||
SEDCMD = s/^\([ \t]*\)Version="\([0-9]*\)\.\([0-9]*\)\.[0-9]*\.\([0-9]*\)"\(.*\)/\1Version="\2.\3.@@TAGVER@@.\4"\5/
|
||||
|
||||
# This step produces the UPX compressed and signed releases that are made available for public download
|
||||
# NB: UPX v3.09 or later is needed for LZMA compression (http://upx.sourceforge.net/)
|
||||
|
@ -10,3 +12,10 @@ release: all
|
|||
@upx --lzma $(TARGET)$(EXEEXT)
|
||||
@mv $(TARGET)$(EXEEXT) $(TARGET)-$(VERSION)$(SUFFIX)$(EXEEXT)
|
||||
@cmd.exe //c _sign.cmd $(TARGET)-$(VERSION)$(SUFFIX)$(EXEEXT)
|
||||
|
||||
appx: $(TARGET)-$(VERSION)$(SUFFIX)$(EXEEXT)
|
||||
$(file > cmd.sed,$(SEDCMD))
|
||||
@sed -i -e "s/@@TAGVER@@/$(TAGVER)/g" cmd.sed
|
||||
@sed -b -i -f cmd.sed res/appstore/AppxManifest.xml
|
||||
@rm cmd.sed
|
||||
@cd res/appstore; cmd.exe //c packme.cmd
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue