vivecraft/Makefile

45 lines
1.4 KiB
Makefile
Raw Permalink Normal View History

2021-08-29 21:46:40 +01:00
default:
@echo "No Default make command configured"
@echo "Please use either"
2022-02-25 19:48:07 +00:00
@echo " - make curseforge"
2021-08-29 21:46:40 +01:00
@echo " - make multimc"
@echo " - make technic"
@echo " - make all"
@echo ""
2022-02-25 19:48:07 +00:00
@echo "Curseforge will make a curseforge compatible zip"
@echo "Multimc will make a multimc zip file which contains"
@echo " the packwiz updater"
2021-08-29 21:46:40 +01:00
@echo ""
2022-02-25 19:48:07 +00:00
@echo "Technic will make a technic pack zip"
2021-08-29 21:46:40 +01:00
@echo ""
2022-02-25 19:48:07 +00:00
@echo "All will make all packs it can"
2022-02-25 19:07:26 +00:00
@echo ""
2022-02-25 19:48:07 +00:00
curseforge:
@echo "Making Curseforge pack"
2022-09-02 01:48:44 +01:00
packwiz curseforge export --pack-file .minecraft/pack.toml -o ../vivecraft-curseforge.zip
7z d ../vivecraft-curseforge.zip overrides/packwiz-installer-bootstrap.jar overrides/pack.toml overrides/index.toml
2022-03-02 02:47:39 +00:00
modrinth:
@echo "Making Modrinth pack"
2022-09-02 01:48:44 +01:00
packwiz modrinth export --pack-file .minecraft/pack.toml -o ../vivecraft-modrinth.zip
7z d ../vivecraft-modrinth.zip overrides/packwiz-installer-bootstrap.jar overrides/pack.toml overrides/index.toml
2022-02-25 19:48:07 +00:00
2021-08-29 21:46:40 +01:00
multimc:
2022-02-25 19:07:26 +00:00
@echo "Making MultiMC pack"
2022-09-02 01:48:44 +01:00
7z d ../vivecraft-multimc.zip ./* -r
7z d ../vivecraft-multimc.zip ./.minecraft -r
7z a ../vivecraft-multimc.zip ./* -r
7z a ../vivecraft-multimc.zip ./.minecraft -r
7z d ../vivecraft-multimc.zip ./.minecraft/mods ./.minecraft/pack.toml ./.minecraft/index.toml -r
2021-08-29 21:46:40 +01:00
2022-02-27 19:35:13 +00:00
clean:
-rm -rf .technic
-git gc --aggressive --prune
2022-03-02 02:47:39 +00:00
all: curseforge modrinth multimc technic clean
update-packwiz:
go install github.com/packwiz/packwiz@latest
clear
@echo "Packwiz has been Updated"