-
Notifications
You must be signed in to change notification settings - Fork 549
/
freeze.py
563 lines (491 loc) · 24 KB
/
freeze.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
"""
@file
@brief cx_Freeze script to build OpenShot package with dependencies (for Mac and Windows)
@author Jonathan Thomas <[email protected]>
@section LICENSE
Copyright (c) 2008-2016 OpenShot Studios, LLC
(http://www.openshotstudios.com). This file is part of
OpenShot Video Editor (http://www.openshot.org), an open-source project
dedicated to delivering high quality video editing and animation solutions
to the world.
OpenShot Video Editor is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
OpenShot Video Editor is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with OpenShot Library. If not, see <http://www.gnu.org/licenses/>.
"""
# Syntax to build redistributable package: python3 freeze.py build
#
# Troubleshooting: If you encounter an error while attempting to freeze
# the PyQt5/uic/port_v2, remove the __init__.py in that folder. And if
# you are manually compiling PyQt5 on Windows, remove the -strip line
# from the Makefile. On Mac, just delete the port_v2 folder. Also, you
# might need to remove the QtTest.so from /usr/local/lib/python3.3/site-packages/PyQt5,
# if you get errors while freezing.
#
# Mac Syntax to Build App Bundle:
# 1) python3 freeze.py bdist_mac --qt-menu-nib="/usr/local/Cellar/qt5/5.4.2/plugins/platforms/" --iconfile=installer/openshot.icns --custom-info-plist=installer/Info.plist --bundle-name="OpenShot Video Editor"
# 2) change Contents/Info.plist to use launch-mac.sh as the Executable name
# 3) manually fix rsvg executable:
# sudo dylibbundler -od -of -b -x ~/apps/rsvg/rsvg-convert -d ./rsvg-libs/ -p @executable_path/rsvg-libs/
# 4) Code sign and create the DMG (disk image)
# a) cd ~/apps/openshot-qt-git/
# b) bash installer/build-mac-dmg.sh
#
# Windows Syntax to Build MSI Installer
# NOTE: Python3.5 requires custom build of cx_Freeze (https://github.com/sekrause/cx_Freeze-wheels). Download, python setup.py build, python setup.py install
# 1) python3 freeze.py bdist_msi
# NOTE: Requires a tweak to cx_freeze: http://stackoverflow.com/questions/24195311/how-to-set-shortcut-working-directory-in-cx-freeze-msi-bundle
# 2) Sign MSI with private code signing key (optional)
# NOTE: Install Windows 10 SDK first
# signtool sign /v /f OSStudiosSPC.pfx "OpenShot Video Editor-2.0.0-win32.msi"
import inspect
import glob
import os
import sys
import fnmatch
import json
from shutil import copytree, rmtree, copy
from cx_Freeze import setup, Executable
import cx_Freeze
from PyQt5.QtCore import QLibraryInfo
import shutil
from installer.version_parser import parse_version_info, parse_build_name
print (str(cx_Freeze))
# Set '${ARCHLIB}' envvar to override system library path
ARCHLIB = os.getenv('ARCHLIB', "/usr/lib/x86_64-linux-gnu/")
if not ARCHLIB.endswith('/'):
ARCHLIB += '/'
# Packages to include
python_packages = ["os",
"sys",
"PyQt5",
"openshot",
"time",
"uuid",
"idna",
"sentry_sdk",
"shutil",
"threading",
"subprocess",
"re",
"math",
"xml",
"logging",
"urllib",
"requests",
"zmq",
"webbrowser",
"json",
]
# Modules to include
python_modules = ["idna.idnadata",
"sentry_sdk.integrations.stdlib",
"sentry_sdk.integrations.excepthook",
"sentry_sdk.integrations.dedupe",
"sentry_sdk.integrations.atexit",
"sentry_sdk.integrations.modules",
"sentry_sdk.integrations.argv",
"sentry_sdk.integrations.logging",
"sentry_sdk.integrations.threading",
]
# Determine absolute PATH of OpenShot folder
PATH = os.path.dirname(os.path.realpath(__file__)) # Primary openshot folder
# Look for optional --git-branch arg, and remove it
git_branch_name = "develop"
for arg in sys.argv:
if arg.startswith("--git-branch"):
sys.argv.remove(arg)
git_branch_name = arg.split("=")[-1].strip()
# Make a copy of the src tree (temporary for naming reasons only)
openshot_copy_path = os.path.join(PATH, "openshot_qt")
if os.path.exists(os.path.join(PATH, "src")):
print("Copying modules to openshot_qt directory: %s" % openshot_copy_path)
# Only make a copy if the SRC directory is present (otherwise ignore this)
copytree(os.path.join(PATH, "src"), openshot_copy_path)
# Make a copy of the launch.py script (to name it more appropriately)
copy(os.path.join(PATH, "src", "launch.py"), os.path.join(PATH, "openshot_qt", "launch-openshot"))
if os.path.exists(openshot_copy_path):
# Append path to system path
sys.path.append(openshot_copy_path)
print("Loaded modules from openshot_qt directory: %s" % openshot_copy_path)
# Detect artifact folder (if any)
artifact_path = os.path.join(PATH, "build", "install-x64")
if not os.path.exists(artifact_path):
artifact_path = os.path.join(PATH, "build", "install-x86")
if not os.path.exists(artifact_path):
# Default to user install path
artifact_path = ""
# Append possible build server paths
if artifact_path:
sys.path.insert(0, os.path.join(artifact_path, "lib"))
sys.path.insert(0, os.path.join(artifact_path, "bin"))
from classes import info
from classes.logger import log
log.info("Execution path: %s" % os.path.abspath(__file__))
log.info("Artifact path detected and added to sys.path: %s" % artifact_path)
# Find files matching patterns
def find_files(directory, patterns):
""" Recursively find all files in a folder tree """
for root, dirs, files in os.walk(directory):
for basename in files:
if ".pyc" not in basename and "__pycache__" not in basename:
for pattern in patterns:
if fnmatch.fnmatch(basename, pattern):
filename = os.path.join(root, basename)
yield filename
# GUI applications require a different base on Windows
iconFile = "openshot-qt"
base = None
src_files = []
external_so_files = []
build_options = {}
build_exe_options = {}
exe_name = info.NAME
# Copy QT translations to local folder (to be packaged)
qt_local_path = os.path.join(PATH, "openshot_qt", "language")
qt_system_path = QLibraryInfo.location(QLibraryInfo.TranslationsPath)
log.info("Qt local translation files path: %s" % qt_local_path)
log.info("Qt system translation files path: %s" % qt_system_path)
if os.path.exists(qt_system_path):
# Create local QT translation folder (if needed)
if not os.path.exists(qt_local_path):
os.mkdir(qt_local_path)
# Loop through QT translation files and copy them
for file in os.listdir(qt_system_path):
# Copy QT translation files
if (file.startswith("qt_") or file.startswith("qtbase_")) and file.endswith(".qm"):
log.info("Qt system translation, copied: %s" % file)
shutil.copyfile(os.path.join(qt_system_path, file), os.path.join(qt_local_path, file))
# Copy git log files into src/settings files (if found)
version_info = {}
if artifact_path:
share_path = os.path.join(artifact_path, "share")
log.info("Copy share path to settings: %s" % share_path)
if os.path.exists(share_path):
for git_log_filename in os.listdir(share_path):
git_log_filepath = os.path.join(share_path, git_log_filename)
if os.path.isfile(git_log_filepath):
src_files.append((git_log_filepath, "settings/%s" % git_log_filename))
if os.path.splitext(git_log_filepath)[1] == ".env":
# No extension, parse version info
version_info.update(parse_version_info(git_log_filepath))
# If version info found (create src/settings/version.json file)
if version_info:
# Calculate build name from version info
version_info["build_name"] = parse_build_name(version_info, git_branch_name)
version_path = os.path.join(openshot_copy_path, "settings", "version.json")
with open(version_path, "w") as f:
f.write(json.dumps(version_info, indent=4))
if sys.platform == "win32":
# Define alternate terminal-based executable
extra_exe = {"base": None, "name": exe_name + "-cli.exe"}
# Standard graphical Win32 launcher
base = "Win32GUI"
build_exe_options["include_msvcr"] = True
exe_name += ".exe"
# Append Windows ICON file
iconFile += ".ico"
# Append some additional files for Windows (this is a debug launcher)
src_files.append((os.path.join(PATH, "installer", "launch-win.bat"), "launch-win.bat"))
# Add additional package
python_packages.extend([
"idna",
"OpenGL",
"OpenGL_accelerate",
])
# Manually add BABL extensions (used in ChromaKey effect) - these are loaded at runtime,
# and thus cx_freeze is not able to detect them
MSYSTEM = os.getenv('MSYSTEM', "MINGW64").lower()
babl_ext_path = "c:/msys64/%s/lib/babl-0.1/" % MSYSTEM
for filename in find_files(babl_ext_path, ["*.dll"]):
src_files.append((filename, os.path.join("lib", "babl-ext", os.path.relpath(filename, start=babl_ext_path))))
# Append all source files
src_files.append((os.path.join(PATH, "installer", "qt.conf"), "qt.conf"))
for filename in find_files("openshot_qt", ["*"]):
src_files.append((filename, os.path.join(os.path.relpath(filename, start=openshot_copy_path))))
elif sys.platform == "linux":
# Find libopenshot.so path (GitLab copies artifacts into local build/install folder)
libopenshot_path = os.path.join(PATH, "build", "install-x64", "lib")
if not os.path.exists(libopenshot_path):
libopenshot_path = os.path.join(PATH, "build", "install-x86", "lib")
if not os.path.exists(libopenshot_path):
# Default to user install path
libopenshot_path = "/usr/local/lib"
# Find all related SO files
for filename in find_files(libopenshot_path, ["*openshot*.so*"]):
if '_' in filename or filename.count(".") == 2:
external_so_files.append((filename, os.path.relpath(filename, start=libopenshot_path)))
# Add libresvg (if found)
resvg_path = "/usr/lib/libresvg.so"
if os.path.exists(resvg_path):
external_so_files.append((resvg_path, os.path.basename(resvg_path)))
# Add QtWebEngineProcess (if found)
web_process_path = ARCHLIB + "qt5/libexec/QtWebEngineProcess"
if os.path.exists(web_process_path):
external_so_files.append(
(web_process_path, os.path.basename(web_process_path)))
# Add QtWebEngineProcess Resources & Local
qt5_path = "/usr/share/qt5/"
for filename in find_files(os.path.join(qt5_path, "resources"), ["*"]):
external_so_files.append((filename, os.path.relpath(filename, start=qt5_path)))
for filename in find_files(os.path.join(qt5_path, "translations", "qtwebengine_locales"), ["*"]):
external_so_files.append((filename, os.path.relpath(filename, start=qt5_path)))
# Add Qt xcbglintegrations plugin
xcbgl_path = ARCHLIB + "qt5/"
for filename in find_files(os.path.join(xcbgl_path, "plugins", "xcbglintegrations"), ["*"]):
external_so_files.append((filename, os.path.relpath(filename, start=xcbgl_path)))
# Add libsoftokn3
nss_path = ARCHLIB + "nss/"
for filename in find_files(nss_path, ["*"]):
external_so_files.append((filename, os.path.basename(filename)))
# Manually add BABL extensions (used in ChromaKey effect) - these are loaded at runtime,
# and thus cx_freeze is not able to detect them
babl_ext_path = ARCHLIB + "babl-0.1/"
for filename in find_files(babl_ext_path, ["*.so"]):
src_files.append((filename, os.path.join("lib", "babl-ext", os.path.relpath(filename, start=babl_ext_path))))
# Append Linux ICON file
iconFile += ".svg"
src_files.append((os.path.join(PATH, "xdg", iconFile), iconFile))
# Shorten name (since RPM can't have spaces)
info.PRODUCT_NAME = "openshot-qt"
# Add custom launcher script for frozen linux version
src_files.append((os.path.join(PATH, "installer", "launch-linux.sh"), "launch-linux.sh"))
# Get a list of all openshot.so dependencies (scan these libraries for their dependencies)
pyqt5_mod_files = []
from importlib import import_module
for submod in ['Qt', 'QtSvg', 'QtWidgets', 'QtCore', 'QtGui', 'QtDBus']:
mod_name = "PyQt5.{}".format(submod)
mod = import_module(mod_name)
pyqt5_mod_files.append(inspect.getfile(mod))
# Optional additions
for mod_name in [
'PyQt5.QtWebEngine',
'PyQt5.QtWebEngineWidgets',
'PyQt5.QtWebKit',
'PyQt5.QtWebKitWidgets',
]:
try:
mod = import_module(mod_name)
pyqt5_mod_files.append(inspect.getfile(mod))
except ImportError as ex:
log.warning("Skipping {}: {}".format(mod_name, ex))
lib_list = pyqt5_mod_files
for lib_name in [
os.path.join(libopenshot_path, "libopenshot.so"),
"/usr/local/lib/libresvg.so",
ARCHLIB + "qt5/plugins/platforms/libqxcb.so"
]:
if os.path.exists(lib_name):
lib_list.append(lib_name)
import subprocess
for library in lib_list:
p = subprocess.Popen(["ldd", library], stdout=subprocess.PIPE)
out, err = p.communicate()
depends = str(out).replace("\\t", "").replace("\\n", "\n").replace("\'", "").split("\n")
# Loop through each line of output (which outputs dependencies - one per line)
for line in depends:
log.info("ldd raw line: %s" % line)
lineparts = line.split("=>")
libname = lineparts[0].strip()
if len(lineparts) <= 1:
continue
libdetails = lineparts[1].strip()
libdetailsparts = libdetails.split("(")
if len(libdetailsparts) <= 1:
continue
# Determine if dependency is usr installed (or system installed)
# Or if the dependency matches one of the following exceptions
# And ignore paths that start with /lib
libpath = libdetailsparts[0].strip()
libpath_file = os.path.basename(libpath)
log.info("libpath: %s, libpath_file: %s" % (libpath, libpath_file))
if (libpath
and os.path.exists(libpath)
and "libnvidia-glcore.so" not in libpath
and libpath_file not in [
"libdl.so.2",
"librt.so.1",
"libpthread.so.0",
"libc.so.6",
"libstdc++.so.6",
"libGL.so.1",
"libxcb.so.1",
"libX11.so.6",
"libX11-xcb.so.1",
"libasound.so.2",
"libgcc_s.so.1 ",
"libICE.so.6",
"libp11-kit.so.0",
"libSM.so.6",
# Next libs are all part of glib2
# Adding these back in, for experimental RHEL 84 support (which has a custom version of glib
# that breaks our AppImages).
#"libglib-2.0.so.0",
#"libgobject-2.0.so.0",
#"libgio-2.0.so.0",
#"libgmodule-2.0.so.0",
#"libgthread-2.0.so.0",
#"libpango-1.0.so.0",
#"libpangocairo-1.0.so.0",
#"libpangoft2-1.0.so.0",
"libm.so.6",
"libdrm.so.2",
"libfreetype.so.6",
"libfontconfig.so.1",
"libharfbuzz.so.0",
#"libthai.so.0",
]
) or libpath_file in [
"libgcrypt.so.11",
"libQt5DBus.so.5",
"libpng12.so.0",
"libbz2.so.1.0",
"libqxcb.so",
"libxcb-xinerama.so.0",
"libpcre.so.3",
"libselinux.so.1",
]:
external_so_files.append((libpath, libpath_file))
else:
log.info("Skipping external library: %s" % libpath)
# Append all source files
src_files.append((os.path.join(PATH, "installer", "qt.conf"), "qt.conf"))
for filename in find_files("openshot_qt", ["*"]):
src_files.append((filename, os.path.join(os.path.relpath(filename, start=openshot_copy_path))))
elif sys.platform == "darwin":
# Copy Mac specific files that cx_Freeze misses
# Add libresvg (if found)
resvg_path = "/usr/local/lib/librsvg-2.dylib"
if os.path.exists(resvg_path):
external_so_files.append((resvg_path, resvg_path.replace("/usr/local/lib/", "")))
# Copy openshot.py Python bindings
src_files.append((os.path.join(PATH, "installer", "launch-mac"), "launch-mac"))
# Append Mac ICON file
iconFile += ".hqx"
src_files.append((os.path.join(PATH, "xdg", iconFile), iconFile))
# Add QtWebEngineProcess (if found)
qt_install_path = "/usr/local/qt5.15.X/qt5.15/5.15.0/clang_64/"
qt_webengine_path = os.path.join(qt_install_path, "lib", "QtWebEngineCore.framework", "Versions", "5")
web_process_path = os.path.join(qt_webengine_path, "Helpers", "QtWebEngineProcess.app", "Contents", "MacOS", "QtWebEngineProcess")
web_core_path = os.path.join(qt_webengine_path, "QtWebEngineCore")
external_so_files.append((web_process_path, os.path.basename(web_process_path)))
external_so_files.append((web_core_path, os.path.basename(web_core_path)))
# Manually add BABL extensions (used in ChromaKey effect) - these are loaded at runtime,
# and thus cx_freeze is not able to detect them
babl_ext_path = "/usr/local/lib/babl-0.1"
for filename in find_files(babl_ext_path, ["*.dylib"]):
src_files.append((filename, os.path.join("lib", "babl-ext", os.path.relpath(filename, start=babl_ext_path))))
# Add QtWebEngineProcess Resources & Local
for filename in find_files(os.path.join(qt_webengine_path, "Resources"), ["*"]):
external_so_files.append((filename, os.path.relpath(filename, start=os.path.join(qt_webengine_path, "Resources"))))
for filename in find_files(os.path.join(qt_webengine_path, "Resources", "qtwebengine_locales"), ["*"]):
external_so_files.append((filename, os.path.relpath(filename, start=os.path.join(qt_webengine_path, "Resources"))))
for filename in find_files(os.path.join(qt_install_path, "plugins"), ["*"]):
relative_filepath = os.path.relpath(filename, start=os.path.join(qt_install_path, "plugins"))
plugin_name = os.path.dirname(relative_filepath)
if plugin_name in ["imageformats", "platforms"]:
external_so_files.append((filename, relative_filepath))
# Append all source files
src_files.append((os.path.join(PATH, "installer", "qt.conf"), "qt.conf"))
for filename in find_files("openshot_qt", ["*"]):
src_files.append((filename, os.path.join("lib", os.path.relpath(filename, start=openshot_copy_path))))
# Exclude gif library which crashes on Mac
build_exe_options["bin_excludes"] = ["/System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libGIF.dylib",
"/usr/local/opt/giflib/lib/libgif.dylib",
"/usr/local/opt/tesseract/lib/libtesseract.4.dylib",
"/usr/local/opt/leptonica/lib/liblept.5.dylib"]
# Dependencies are automatically detected, but it might need fine tuning.
build_exe_options["packages"] = python_packages
build_exe_options["include_files"] = src_files + external_so_files
build_exe_options["includes"] = python_modules
build_exe_options["excludes"] = ["distutils",
"numpy",
"setuptools",
"tkinter",
"pydoc_data",
"pycparser",
"pkg_resources"]
if sys.platform == "darwin":
build_exe_options["excludes"].append("sentry_sdk.integrations.django")
# Set options
build_options["build_exe"] = build_exe_options
# Define launcher executable to create
exes = [Executable("openshot_qt/launch.py",
base=base,
icon=os.path.join(PATH, "xdg", iconFile),
shortcutName="%s" % info.PRODUCT_NAME,
shortcutDir="ProgramMenuFolder",
targetName=exe_name,
copyright=info.COPYRIGHT)]
try:
# Include extra launcher configuration, if defined
exes.append(Executable("openshot_qt/launch.py",
base=extra_exe['base'],
icon=os.path.join(PATH, "xdg", iconFile),
targetName=extra_exe['name'],
copyright=info.COPYRIGHT))
except NameError:
pass
# Create distutils setup object
setup(name=info.PRODUCT_NAME,
version=info.VERSION,
description=info.DESCRIPTION,
author=info.COMPANY_NAME,
options=build_options,
executables=exes)
# Remove temporary folder (if SRC folder present)
if os.path.exists(os.path.join(PATH, "src")):
rmtree(openshot_copy_path, True)
# Fix a few things on the frozen folder(s)
build_path = os.path.join(PATH, "build")
if sys.platform == "darwin":
# Mac issues with frozen folder and *.app folder
# We need to rewrite many dependency paths and library IDs
from installer.fix_qt5_rpath import *
for frozen_path in os.listdir(build_path):
if frozen_path.startswith("exe"):
fix_rpath(os.path.join(build_path, frozen_path))
elif frozen_path.endswith(".app"):
fix_rpath(os.path.join(build_path, frozen_path, "Contents", "MacOS"))
print_min_versions(os.path.join(build_path, frozen_path, "Contents", "MacOS"))
elif sys.platform == "linux":
# Linux issues with frozen folder
# We need to remove some excess folders/files that are unneeded bloat
for frozen_path in os.listdir(build_path):
if frozen_path.startswith("exe"):
paths = ["lib/openshot_qt/",
"lib/*opencv*",
"lib/libopenshot*",
"translations/",
"locales/",
"libQt5WebKit.so.5"]
for path in paths:
full_path = os.path.join(build_path, frozen_path, path)
for remove_path in glob.glob(full_path):
if os.path.isfile(remove_path):
log.info("Removing unneeded file: %s" % remove_path)
os.unlink(remove_path)
elif os.path.isdir(remove_path):
log.info("Removing unneeded folder: %s" % remove_path)
rmtree(remove_path)
# We need to remove some excess folders/files that are unneeded bloat
# All 3 OSes
for frozen_path in os.listdir(build_path):
if frozen_path.startswith("exe"):
paths = ["lib/babl-ext/libbabl-0.1-0.*",
"lib/babl-ext/libgcc_s_seh-1.*",
"lib/babl-ext/liblcms2-2.*",
"lib/babl-ext/libwinpthread-1.*",
"lib/babl-ext/msvcrt.*"]
for path in paths:
full_path = os.path.join(build_path, frozen_path, path)
for remove_path in glob.glob(full_path):
if os.path.isfile(remove_path):
log.info("Removing unneeded file: %s" % remove_path)
os.unlink(remove_path)