in reply to Distribute cross-platform perl application
For MacOS X, you could try the following approach:
configure --prefix=/my/path/image2swf.app/lib make make install
perl Makefile.PL PREFIX=/my/path/image2swf.app/lib make make install
use lib qw(lib)
I don't have an article handy that shows the structure of Mac OS X app-directories, but you might google for it or look at another app to see how it's done. The created app will look to the user as one file.
Update: I'm not recommending this for linux because distributing compiled versions of software (ImageMagick in that case) can be problematic on linux (library issues, different kinds of processor (x86, Sparc), etc.)
|
---|