When extracting the archives of Horde3D and the extensions/tools I get back-slashes instead of directory-breaks (which in Unix/Linux is a forward slash).
I think this is because you are using an old archiving tool.
From info-zip.org:
Quote:
Why does my Unix UnZip extract flat filenames with backslashes in them instead of a subdirectory tree?
Short answer: because that's how they're stored in the zipfile, and backslashes ('\') are regular filename characters, not directory separators.
Longer answer: older versions of WinZip (and, no doubt, some other clone zippers) stored filenames using backslashes as directory separators in violation of PKWARE's appnote, which specifies that forward slashes ('/') should be used. Newer versions of WinZip correct that bug, so if you created the archive in question, you should upgrade. If someone else did, you should ask them to upgrade.
There is no capability in Unix UnZip to treat backslashes as directory separators (since they're perfectly acceptable filename characters, just like colons, quotes, and pretty much everything other than forward slashes), so if you want to extract the archive as a subdirectory tree without hacking the source code, you'll need to rename the archive entries. See the next item for more information about that.
Could you possibly update your winzip for the next release, it would make things a lot easier for me.
Cheers