vanillia-modpack/Makefile
2023-05-07 21:24:11 -07:00

72 lines
2.1 KiB
Makefile

default:
@echo "No Default make command configured"
@echo "Please use either"
@echo " - make curseforge"
@echo " - make multimc"
@echo " - make technic"
@echo " - make all"
@echo ""
@echo "Curseforge will make a curseforge compatible zip"
@echo "Multimc will make a multimc zip file which contains"
@echo " the packwiz updater"
@echo ""
@echo "Technic will make a technic pack zip"
@echo ""
@echo "All will make all packs it can"
@echo ""
PACKNAME := $(notdir $(CURDIR))
curseforge:
-mkdir .build
@echo "Making Curseforge pack"
packwiz curseforge export --pack-file .minecraft/pack.toml
mv ./*.zip ./.build/
modrinth:
-mkdir .build
@echo "Making Modrinth pack"
packwiz modrinth export --pack-file .minecraft/pack.toml
mv ./*.mrpack ./.build/
multimc:
-mkdir .build
@echo "Making MultiMC pack"
7z d .build/${PACKNAME}-multimc.zip ./* -r
7z d .build/${PACKNAME}-multimc.zip ./.minecraft -r
7z a .build/${PACKNAME}-multimc.zip ./* -r
7z a .build/${PACKNAME}-multimc.zip ./.minecraft -r
7z d .build/${PACKNAME}-multimc.zip ./.build ./.minecraft/mods ./.minecraft/pack.toml ./.minecraft/index.toml -r
technic:
-mkdir .build
@echo "Making Technic pack"
-rm -rf .technic
-cp -r .minecraft .technic
cp ${PACKNAME}_icon.png .technic/icon.png
cd .technic && java -jar ../.minecraft/packwiz-installer-bootstrap.jar ../.minecraft/pack.toml && cd ..
-rm -rf .technic/packwiz* .technic/index.toml .technic/pack.toml .technic/mods/*.toml
7z d .build/${PACKNAME}-technic.zip ./* ./.* -r
7z a .build/${PACKNAME}-technic.zip ./.technic/* -r
server:
-mkdir .build
@echo "Making Server pack"
-rm -rf .server
-mkdir .server
cd .server && java -jar ../.minecraft/packwiz-installer-bootstrap.jar ../.minecraft/pack.toml -s server && cd ..
7z d .build/${PACKNAME}-server.zip ./* ./.* -r
7z a .build/${PACKNAME}-server.zip ./.server/* -r
preClean:
-rm -rf .build
postClean:
-rm -rf .technic
-git gc --aggressive --prune
all: preClean curseforge modrinth multimc technic postClean
update-packwiz:
go install github.com/packwiz/packwiz@latest
clear
@echo "Packwiz has been Updated"