|
|
| Problems? Is your data what you think it is? | |
| PerlMonks |
Re^5: pp macOS external fileby marto (Cardinal) |
| on Apr 20, 2018 at 14:23 UTC ( [id://1213254]=note: print w/replies, xml ) | Need Help?? |
|
"So, the path for this icon should already be correct (and from the Terminal it works okay" Not when you run it. What follows is a sort of high level explanation of how this works. An executable generated by pp is essentially a self extracting/executing zip file. You can use the normal unzip command to extract it. The first time it executes it gets extracted to a temporary area. For your problem I had:
When packed (as above) and executed this gets extracted to a temporary area, in this case: /tmp/par-6d6172746f/cache-b3da3d80145db3849552916091b87f92bea49883 In the work around above this is accessible via $ENV{PAR_TEMP}. Within this directory you'll find the various bits & bobs, modules, libraries and so on that are required to run your code without needing perl (and all of those other things) installed. Within this is a directory inc:
here we see myicon.png. the actual script is in the sub directory 'script'. Another method I've seen people use is to embed the images within their code, and use the Tk::Photo -data option (rather than -file).
In Section
Seekers of Perl Wisdom
|
|
||||||||||||||||||||||||||||||