build: add version to pack.mcmeta

This commit is contained in:
Victoria Fierce 2023-02-18 13:44:43 +01:00
parent f9888588d6
commit 37b9590845
3 changed files with 10 additions and 1 deletions

View File

@ -4,6 +4,9 @@ BUILD_VERSION:=$(shell git describe --tags)
all: malloc-data-$(BUILD_VERSION).zip malloc-data-$(BUILD_VERSION).zip.sha1 all: malloc-data-$(BUILD_VERSION).zip malloc-data-$(BUILD_VERSION).zip.sha1
pack.mcmeta: pack.mcmeta.in
sed -e 's/@VERSION@/$(BUILD_VERSION)/g' $< > $@
malloc-data-$(BUILD_VERSION).zip: pack.mcmeta malloc-data-$(BUILD_VERSION).zip: pack.mcmeta
zip -r $@ pack.mcmeta data zip -r $@ pack.mcmeta data

View File

@ -1,6 +1,6 @@
{ {
"pack": { "pack": {
"pack_format": 10, "pack_format": 10,
"description": "Malloc Minecraft Item Functions (1.0.0)" "description": "Malloc Minecraft Item Functions (v1.0.0-1-gf988858)"
} }
} }

6
pack.mcmeta.in Normal file
View File

@ -0,0 +1,6 @@
{
"pack": {
"pack_format": 10,
"description": "Malloc Minecraft Item Functions (@VERSION@)"
}
}