summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndoni Morales Alastruey <ylatuya@gmail.com>2013-02-24 02:02:13 +0100
committerAndoni Morales Alastruey <ylatuya@gmail.com>2013-08-22 22:02:11 +0200
commit083c6dba6770875cf1f58cd0b79abdcea5096298 (patch)
treed8986d860f370f72e1f48d17dc56d26d762ea28e
parent495f7505f1aca80e5f65650a9016a6dbab2b32c7 (diff)
package: add an option to strip object files for applications
-rw-r--r--cerbero/packages/package.py3
1 files changed, 3 insertions, 0 deletions
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)