Unfortunately, unpacking means installing, because the dir structure inside
NSIS archive is mangled by the presence on $_OUTDIR directory.
This will create the following structure:
SetOutPath "$INSTDIR\manual"
File /r /x .* doc\manual\*.html
File /r /x .* doc\manual\styles
File /r /x .* doc\manual\images
Why there is $_OUTDIR prefix in one case and no prefix in another?
manual
manual.cs.html
manual.de.html
manual.en.html
...
manual.zh_TW.html
$_OUTDIR
styles
manual.css
images
README.txt
game-screen-1.9.4.jpg
recruit-1.9.4.jpg
...
de
game-screen-1.9.14.jpg
...
Is it possible to eliminate $_OUTDIR?