Hi, I'm building an addon which contains another package which uses submodules, ie not under my control. Submodule versions might be updated and new dependencies added.
So, since github does not support getting an archive which includes submodules I'm wondering if anyone has any elegant solutions.
My initial thought was to hook the script/get functionality in libreelec to build a complete archive but there are no possible pre/post or other exits in the script.
So, for now I have a post_unpack in package.mk which clones the necessary source, ie I hardcoded tags for the submodule which is not very elegant and wastes time at unpacking.
I saw this was answered earlier but it was kinda low on details.