Package Maker ?)

ogg

Registered
Hi everyone

I want to build a little installer with the package maker bundled with the developer tools. now, how can I create directorys and set the permissions of the installed files? I know the commands in Unix, but I don't know, where I can place this commands in Package Maker.

Thanks all!
 
You need to write a shell script in this format:


#!/bin/sh

##
# Your description/comments here
##

your commands here


Then make that script executable (chmod 755 filename) and and save it in a separate directory using one of the filenames mentioned in PackageMaker's help.

Include the folder under resources, build your installer and it should work.
 
Back
Top