summaryrefslogtreecommitdiff
path: root/cerbero/packages/package.py
diff options
context:
space:
mode:
Diffstat (limited to 'cerbero/packages/package.py')
-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)