diff options
author | Thiago Macieira <thiago.macieira@nokia.com> | 2009-09-01 16:38:18 (GMT) |
---|---|---|
committer | Thiago Macieira <thiago.macieira@nokia.com> | 2009-09-01 16:38:18 (GMT) |
commit | fb920977b1afd105ae87109d9ee930f5a2fe0b90 (patch) | |
tree | f13149d253529f800d067e7f97aa356e8d3d3229 /bin | |
parent | 35d05651d3eabeb981f0ffa0251410df4d991d36 (diff) | |
parent | e4804c5d3d2e80cc7f57936591374d29478dbb2a (diff) | |
download | Qt-fb920977b1afd105ae87109d9ee930f5a2fe0b90.zip Qt-fb920977b1afd105ae87109d9ee930f5a2fe0b90.tar.gz Qt-fb920977b1afd105ae87109d9ee930f5a2fe0b90.tar.bz2 |
Merge branch '4.6'
Diffstat (limited to 'bin')
-rw-r--r-- | bin/patch_capabilities.pl | 31 |
1 files changed, 25 insertions, 6 deletions
diff --git a/bin/patch_capabilities.pl b/bin/patch_capabilities.pl index f1d94e0..005d587 100644 --- a/bin/patch_capabilities.pl +++ b/bin/patch_capabilities.pl @@ -7,6 +7,17 @@ # ####################################################################### +sub Usage() { + print("This script can be used to set capabilities of all binaries\n"); + print("specified for deployment in a .pkg file.\n"); + print("If no capabilities are given, the binaries will be given the\n"); + print("capabilities supported by self-signed certificates.\n"); + print("\nUsage: patch_capabilities.pl pkg_filename [target-platform] [capability list]\n"); + print(" If template .pkg file is given, next agrument must be 'target-platform'.\n"); + print("\nE.g. patch_capabilities.pl myapp_template.pkg release-armv5 \"All -TCB\"\n"); + exit(); +} + my @capabilitiesToSet = ("LocalServices", "NetworkServices", "ReadUserData", "UserEnvironment", "WriteUserData"); # If arguments were given to the script, @@ -15,6 +26,19 @@ if (@ARGV) # Parse the first given script argument as a ".pkg" file name. my $pkgFileName = shift(@ARGV); + # Check if using template .pkg and do preprocessing if needed + if (($pkgFileName =~ m|_template\.pkg$|i) && -r($pkgFileName)) + { + my $target; + unless ($target = shift(@ARGV)) + { + Usage(); + } + + system ("createpackage.bat -p ".$pkgFileName." ".$target); + $pkgFileName =~ s/_template\.pkg/_${target}\.pkg/; + } + # If the specified ".pkg" file exists (and can be read), if (($pkgFileName =~ m|\.pkg$|i) && -r($pkgFileName)) { @@ -98,10 +122,5 @@ if (@ARGV) } else { - print("This script can be used to set capabilities of all binaries\n"); - print("specified for deployment in a .pkg file.\n"); - print("If no capabilities are given, the binaries will be given the\n"); - print("capabilities supported by self-signed certificates.\n"); - print("\nUsage: patch_capabilities.pl pkg_filename [capability list]\n"); - print("\nE.g. patch_capabilities.pl myapp_armv5_urel.pkg \"All -TCB\"\n"); + Usage(); } |