diff --git a/.gitmodules b/.gitmodules deleted file mode 100644 index 0aecb74..0000000 --- a/.gitmodules +++ /dev/null @@ -1,36 +0,0 @@ -[submodule "anvil"] - path = anvil - url = https://github.com/minetest-mods/anvil.git -[submodule "castle_farming"] - path = castle_farming - url = https://github.com/minetest-mods/castle_farming.git -[submodule "castle_gates"] - path = castle_gates - url = https://github.com/minetest-mods/castle_gates.git -[submodule "castle_lighting"] - path = castle_lighting - url = https://github.com/minetest-mods/castle_lighting.git -[submodule "castle_masonry"] - path = castle_masonry - url = https://github.com/minetest-mods/castle_masonry.git -[submodule "castle_shields"] - path = castle_shields - url = https://github.com/minetest-mods/castle_shields.git -[submodule "castle_storage"] - path = castle_storage - url = https://github.com/minetest-mods/castle_storage.git -[submodule "castle_tapestries"] - path = castle_tapestries - url = https://github.com/minetest-mods/castle_tapestries.git -[submodule "castle_weapons"] - path = castle_weapons - url = https://github.com/minetest-mods/castle_weapons.git -[submodule "crafting_bench"] - path = crafting_bench - url = https://github.com/minetest-mods/crafting_bench.git -[submodule "orbs_of_time"] - path = orbs_of_time - url = https://github.com/minetest-mods/orbs_of_time.git -[submodule "ropes"] - path = ropes - url = https://github.com/minetest-mods/ropes.git diff --git a/Makefile b/Makefile deleted file mode 100644 index b67a7e1..0000000 --- a/Makefile +++ /dev/null @@ -1,18 +0,0 @@ - -PROJECT ?= castle_modpack -VERSION ?= $(shell git describe --tags --always) - -all: - @echo "Nothing to do. Maybe you want `make dist` instead?" - -dist: - @echo Running git archive... - git archive --prefix=$(PROJECT)-$(VERSION)/ -o $(PROJECT)-$(VERSION).tar $(VERSION) - @echo Running git archive submodules... - p=`pwd` && (echo .; git submodule foreach) | while read entering path; do \ - temp="$${path%\'}"; \ - temp="$${temp#\'}"; \ - path=$$temp; \ - [ "$$path" = "" ] && continue; \ - (cd $$path && git archive --prefix=$(PROJECT)-$(VERSION)/$$path/ HEAD > $$p/tmp.tar && tar --concatenate --file=$$p/$(PROJECT)-$(VERSION).tar $$p/tmp.tar && rm $$p/tmp.tar); \ - done diff --git a/README.md b/README.md index 09feaf5..1b3a0c2 100644 --- a/README.md +++ b/README.md @@ -1,17 +1,11 @@ # Castles++ - A modpack that contains a big variety of nodes and tools to build castles and castle dungeons. ![image](https://raw.githubusercontent.com/minetest-mods/castle/master/screenshot.png) ## Installation -This repository uses Git Modules, which are required in order for the mod to work properly.\ -To clone the repository and its submodules, you will require the [Git Software](https://git-scm.com) and run this command. - -```bash -git clone --recursive https://github.com/minetest-mods/castle.git -``` +This mod works as a "metapackage", marking the mods it includes as dependencies to be installed alongside [on ContentDB](https://content.minetest.net/packages/philipbenr/castle/). ## License diff --git a/anvil b/anvil deleted file mode 160000 index 42c84f0..0000000 --- a/anvil +++ /dev/null @@ -1 +0,0 @@ -Subproject commit 42c84f0f694f820aae141df32192b458aaeecf51 diff --git a/castle_farming b/castle_farming deleted file mode 160000 index 2a4c263..0000000 --- a/castle_farming +++ /dev/null @@ -1 +0,0 @@ -Subproject commit 2a4c263e6045e7d1a5ae5f2a3d87be20491ff238 diff --git a/castle_gates b/castle_gates deleted file mode 160000 index 80334ba..0000000 --- a/castle_gates +++ /dev/null @@ -1 +0,0 @@ -Subproject commit 80334ba480901480b1fc144b3b591b8a36b4eea3 diff --git a/castle_lighting b/castle_lighting deleted file mode 160000 index 7b6c8f2..0000000 --- a/castle_lighting +++ /dev/null @@ -1 +0,0 @@ -Subproject commit 7b6c8f2249f4c2ab9ab4d8046f6c11aa133232ee diff --git a/castle_masonry b/castle_masonry deleted file mode 160000 index 94b25b5..0000000 --- a/castle_masonry +++ /dev/null @@ -1 +0,0 @@ -Subproject commit 94b25b549b502ceeff8d5aa596ddc977745f43ed diff --git a/castle_shields b/castle_shields deleted file mode 160000 index ce853d7..0000000 --- a/castle_shields +++ /dev/null @@ -1 +0,0 @@ -Subproject commit ce853d7bed30a8eb8b646cac17114d12aefe0266 diff --git a/castle_storage b/castle_storage deleted file mode 160000 index 2b9e5f6..0000000 --- a/castle_storage +++ /dev/null @@ -1 +0,0 @@ -Subproject commit 2b9e5f6bcbefa36894815eecf6a7d01829ad1b8d diff --git a/castle_tapestries b/castle_tapestries deleted file mode 160000 index 955afb8..0000000 --- a/castle_tapestries +++ /dev/null @@ -1 +0,0 @@ -Subproject commit 955afb8885d2378cbd7038188726705c608c0c09 diff --git a/castle_weapons b/castle_weapons deleted file mode 160000 index 5f5232a..0000000 --- a/castle_weapons +++ /dev/null @@ -1 +0,0 @@ -Subproject commit 5f5232a685cc371e9decceb155467e462b6220fc diff --git a/crafting_bench b/crafting_bench deleted file mode 160000 index 3aa4cfb..0000000 --- a/crafting_bench +++ /dev/null @@ -1 +0,0 @@ -Subproject commit 3aa4cfb8816b96d559154f918971f2709dd03d73 diff --git a/description.txt b/description.txt deleted file mode 100644 index d16a35d..0000000 --- a/description.txt +++ /dev/null @@ -1 +0,0 @@ -This is a modpack all about creating castles and castle dungeons. diff --git a/init.lua b/init.lua new file mode 100644 index 0000000..2915961 --- /dev/null +++ b/init.lua @@ -0,0 +1 @@ +-- Empty \ No newline at end of file diff --git a/mod.conf b/mod.conf new file mode 100644 index 0000000..3ba5c57 --- /dev/null +++ b/mod.conf @@ -0,0 +1,4 @@ +name = castle +title = Castles++ +description = This is a modpack all about creating castles and castle dungeons. +depends = anvil, castle_farming, castle_gates, castle_lighting, castle_masonry, castle_shields, castle_storage, castle_tapestries, castle_weapons, crafting_bench, orbs_of_time, ropes diff --git a/modpack.txt b/modpack.txt deleted file mode 100644 index e69de29..0000000 diff --git a/orbs_of_time b/orbs_of_time deleted file mode 160000 index d46b307..0000000 --- a/orbs_of_time +++ /dev/null @@ -1 +0,0 @@ -Subproject commit d46b3078a03527221bd63d0a9289e583f09767f0 diff --git a/ropes b/ropes deleted file mode 160000 index eec5465..0000000 --- a/ropes +++ /dev/null @@ -1 +0,0 @@ -Subproject commit eec546558b8496d4d5a2adb833e77630b482e05d