From 083c6dba6770875cf1f58cd0b79abdcea5096298 Mon Sep 17 00:00:00 2001 From: Andoni Morales Alastruey Date: Sun, 24 Feb 2013 02:02:13 +0100 Subject: package: add an option to strip object files for applications --- cerbero/packages/package.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/cerbero/packages/package.py b/cerbero/packages/package.py index 15c146a..d91a78b 100644 --- a/cerbero/packages/package.py +++ b/cerbero/packages/package.py @@ -480,6 +480,8 @@ class App(PackageBase): @type command: list @cvar wrapper: suffix filename for the main executable wrapper @type wrapper: str + @cvar strip: strip binaries for this package + @type strip: bool ''' app_name = None @@ -489,6 +491,7 @@ class App(PackageBase): commands = [] # list of tuples ('CommandName', path/to/binary') wrapper = 'app_wrapper.tpl' resources_wix_installer = None + strip = False def __init__(self, config, store, cookbook): PackageBase.__init__(self, config, store) -- cgit v1.2.3