
01-27-2009, 06:14 PM
|
 |
|
|
Join Date: Jan 2008
Location: WA, USA
Posts: 933
|
|
its not that simple. permissions and file ownership will not be correct for most (if not all) of the files.
you can pull the distribution file with Pacifist then open it with Text Edit or BBEdit (better) and look for the section
Quote:
if( system.compareVersions(system.version.ProductVersi on, "10.5.4") < 0)
{
my.result.message = system.localizedStringWithFormat('VC_Version_messa ge', '10.5.4');
my.result.type = 'MustNotUpgrade';
return false;
|
edit this to show
Quote:
if( system.compareVersions(system.version.ProductVersi on, "10.5.1") < 0)
{
my.result.message = system.localizedStringWithFormat('VC_Version_messa ge', '10.5.1');
my.result.type = 'MustNotUpgrade';
return false;
|
Now repackage and install. for more info on how to do this, I'd recommend:
http://developer.apple.com/documenta...pkgutil.1.html
http://s.sudre.free.fr/Stuff/PackageMaker_Howto.html look to the scripts section of this page.
|