Below is a summary of a way to create a short shell script that will re-create symlinks that cannot be stored in certain archive formats (e.g. 7z archives or zip files [when created with certain tools]).
{ printf 'cd "$(dirname "$0")"\n'; find . -type l -printf 'ln -sfn "%l" "%p"\n' ; } > symlinksThe resultant file (symlinks) can be executed as follows to recreate symlinks on a UNIX-like system OS at a later point, e.g.