Update contrib.
3 # Copyright (c) 2008-2009 Nokia Corporation and/or its subsidiary(-ies).
5 # This component and the accompanying materials are made available
6 # under the terms of "Eclipse Public License v1.0"
7 # which accompanies this distribution, and is available
8 # at the URL "http://www.eclipse.org/legal/epl-v10.html".
10 # Initial Contributors:
11 # Nokia Corporation - initial contribution.
35 'basedir=s' => \$basedir,
36 'platform=s' => \$platform,
38 'certpem=s' => \$certpem,
39 'certkey=s' => \$certkey,
40 'outdir=s' => \$outdir,
41 'maketrgt=s' => \$maketrgt,
42 'sources=s' => \$sources,
43 'stublist=s' => \$stublist,
46 my $ROOT = $ENV{EPOCROOT};
49 if ($maketrgt =~ /RELEASABLES/i or $maketrgt =~ /EXTRATARGET/i)
54 my @a = split(/\s+/, $sources);
57 my $isStub = $stublist =~ /\b$pkg\b/i;
58 my $destdir = GetTargetDir($isStub);
59 my $trgtname = PkgToSis($pkg, $isStub);
60 $s = "$destdir/$trgtname";
64 if ($destdir =~ /epoc32\/data\/z\/.*\/udeb/ || $isStub)
66 my $extratrgt = $destdir;
67 $extratrgt =~ s/\/udeb//;
68 $s = "$extratrgt/$trgtname";
74 $s = join(' ', @targets);
75 $s = join(' ', @extra) if ($maketrgt =~ /EXTRATARGET/i);
80 # Getting here is build final. The pkg file must be in basedir.
83 # $ARGV[0] is one of the targets generated in RELEASABLES above.
85 my $filename = basename($arg);
86 my $trgtdir = dirname($arg);
87 RecursiveMkDir($trgtdir);
90 ($filename, $isStub) = SisToPkg($filename);
91 die "Pkg $filename does not exist!\n" if (! -f $filename);
96 $cmd = "makesis -s $filename $arg";
101 # change the source locations in pkg file
102 my $generatedpkg = "generated.pkg";
103 EditPkgFile($filename, $generatedpkg);
105 my $generatedsis = "generated.sis";
106 $cmd = "makesis $generatedpkg $generatedsis";
109 $cmd = "signsis -S $generatedsis $arg $certpem $certkey";
112 # make an extra copy in /epoc32/data/z/tef_ecomswi.
113 # iby files normally do not expect files in udeb or urel
114 # under /epoc32/data/z.
115 if ($trgtdir =~ /\bepoc32\b.\bdata\b.\bz\b.*\budeb\b/)
117 my $extratrgt = $arg;
118 $extratrgt =~ s/[\/\\]udeb//;
119 copy($arg, $extratrgt);
122 unlink($generatedsis);
123 unlink($generatedpkg);
126 ###################################################
128 ###################################################
133 # for armv5, store all artefacts in data/z.
134 my $d = "${ROOT}epoc32/data/z/$outdir/$cfg";
135 $d =~ s#/$cfg## if ($isStub);
137 if ($platform =~ /winscw/i)
139 $d = "${ROOT}epoc32/release/$platform/$cfg/z/$outdir";
140 $d = "${ROOT}epoc32/release/$platform/$cfg/z/system/install" if ($isStub);
150 my $suffix = ($isStub) ? ".sis" : "signed.sis";
159 $isStub = 0 if ($f =~ s/signed.sis$//);
162 return ($f, $isStub);
170 open(FIN, $inf) or die "fail to read $inf $!\n";
171 open(FOUT, ">$outf") or die "fail to write $outf $!\n";
176 $data =~ s/_PLATFORM_/$platform/g;
177 $data =~ s/_CFG_/$cfg/g;
182 # simple one, cannot handle cases like \\londata04\somedir
191 $i = index($path, "/", $i);
194 $s = substr($path, 0, $i++);
195 mkdir($s, 0777) if (! -d $s);
199 mkdir($path, 0777) if (! -d $path);
205 my @a = split(/[\/\\]/, $$refs);
206 $$refs = File::Spec->catfile(@a);