blob: 375f949c3a43af246bb5078ba8422ed27f0f02a6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
# This Source Code Form is subject to the terms of the Mozilla Public
# License, v. 2.0. If a copy of the MPL was not distributed with this
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
import os
platform = "win32"
config = {
"repack_id": os.environ.get("REPACK_ID"),
"run_configure": False,
"env": {
"PATH": "%(abs_input_dir)s/upx/bin:%(PATH)s",
},
}
|