File tree Expand file tree Collapse file tree 2 files changed +14
-0
lines changed Expand file tree Collapse file tree 2 files changed +14
-0
lines changed Original file line number Diff line number Diff line change @@ -191,6 +191,7 @@ QET_ELMT_DIR="${current_dir}/elements/"
191
191
QET_TBT_DIR=" ${current_dir} /titleblocks/"
192
192
QET_LANG_DIR=" ${current_dir} /lang/"
193
193
QET_FONTS_DIR=" ${current_dir} /fonts/"
194
+ QET_LICENSES_DIR=" ${current_dir} /licenses/"
194
195
195
196
# Add new folder for Qt dialog translation see
196
197
# # see <https://download.tuxfamily.org/qet/Qt_lang/>.
@@ -228,6 +229,11 @@ if [ -d "${QET_FONTS_DIR}" ]; then
228
229
229
230
fi
230
231
232
+ if [ -d " ${QET_LICENSES_DIR} " ]; then
233
+ echo " Copying licenses in the bundle..."
234
+ mkdir $BUNDLE /Contents/Resources/licenses
235
+ cp -R ${QET_LICENSES_DIR} $BUNDLE /Contents/Resources/licenses
236
+ fi
231
237
# ## create disk image ###############################################
232
238
233
239
echo
Original file line number Diff line number Diff line change @@ -188,6 +188,7 @@ QET_TBT_DIR="${current_dir}/titleblocks/"
188
188
QET_LANG_DIR=" ${current_dir} /lang/"
189
189
QET_EXAMPLES_DIR=" ${current_dir} /examples/"
190
190
QET_FONTS_DIR=" ${current_dir} /fonts/"
191
+ QET_LICENSES_DIR=" ${current_dir} /licenses/"
191
192
192
193
193
194
# Add new folder for Qt dialog translation see
@@ -232,6 +233,13 @@ if [ -d "${QET_FONTS_DIR}" ]; then
232
233
cp ${current_dir} /fonts/* .ttf $BUNDLE /Contents/Resources/fonts
233
234
234
235
fi
236
+
237
+ if [ -d " ${QET_LICENSES_DIR} " ]; then
238
+ echo " Copying licenses in the bundle..."
239
+ mkdir $BUNDLE /Contents/Resources/licenses
240
+ cp -R ${QET_LICENSES_DIR} $BUNDLE /Contents/Resources/licenses
241
+ fi
242
+
235
243
codesign --force --deep --sign --timestamp -s " Developer ID Application: Laurent TRINQUES (Y73WZ6WZ5X)" --options=runtime $BUNDLE
236
244
# ## create zip tarball ###############################################
237
245
You can’t perform that action at this time.
0 commit comments