Add --package-source option to prepare.py.

This commit is contained in:
Ghislain MARY 2017-07-19 17:41:16 +02:00 committed by Ronan Abhamon
parent ca984f9bee
commit ab6027079f

View file

@ -112,6 +112,7 @@ class DesktopPreparator(prepare.Preparator):
self.argparser.add_argument('-ac', '--all-codecs', help="Enable all codecs, including the non-free ones", action='store_true')
self.argparser.add_argument('-sys', '--use-system-dependencies', help="Find dependencies on the system.", action='store_true')
self.argparser.add_argument('-p', '--package', help="Build an installation package (only on Mac OSX and Windows).", action='store_true')
self.argparser.add_argument('-ps', '--package-source', help="Build source packages for the dependencies.", action='store_true')
def parse_args(self):
prepare.Preparator.parse_args(self)