e58e4a9149
* [mac/build] update build steps * [macos] bundle app * [macos] build dmg * [ci] setup macOS CI * [i18n] TODO: rm WX locale files * [deps] set main branch to main * Fix osx-fix-libs.py Create symbolic links, to make libicu happy Rewrite the script in python3, as python2 is deprecated * Add write permission before install_name_tool when doing osx-bundle Fix wangqr/Aegisub#39 * Handle @loader_path in libboost on macOS See wangqr/Aegisub#39 * [tools/mac] use python3 * [ci/mac] install & using system deps * [ci/win] don't build fribidi:docs * [ci/mac] trying openal-soft * [ci/mac] use pulseaudio in CI * [ci/win] only run aeg's test * [ci/win] fix CI * [ci/win] fix CI: not use dict `{}` * [ci] run ci * [ci/win] don't build docs * [ci/win] remove args tail newline * [ci/win] false->disabled * Use md title format Co-authored-by: Ryan Lucia <ryan@luciaonline.net> * Recover file permissions. * [ci/win] disable fontconfig Co-Authored-By: Ryan Lucia <ryan@luciaonline.net> * [ci/win] disable libass:fontconfig Co-authored-by: wangqr <wangqr@wangqr.tk> Co-authored-by: Ryan Lucia <ryan@luciaonline.net>
41 lines
2.1 KiB
Meson
41 lines
2.1 KiB
Meson
conf_pkg = configuration_data()
|
|
|
|
if host_machine.system() == 'windows'
|
|
installer_setup = find_program(meson.project_source_root() / 'tools/win-installer-setup.ps1')
|
|
run_target('win-installer',
|
|
command: [installer_setup, meson.project_build_root(), meson.project_source_root()])
|
|
portable_setup = find_program(meson.project_source_root() / 'packages/win_installer/portable/create-portable.ps1')
|
|
run_target('win-portable', command: [portable_setup, meson.project_build_root(), meson.project_source_root()])
|
|
elif host_machine.system() == 'darwin'
|
|
fontconfig_conf = run_command('pkg-config', '--variable=confdir', 'fontconfig').stdout().strip()
|
|
bundle_app_sh = find_program(meson.project_source_root() / 'tools/osx-bundle.sh')
|
|
run_target('osx-bundle',
|
|
command: [bundle_app_sh, meson.project_source_root(), meson.project_build_root(), 'wx-config', fontconfig_conf, '',
|
|
get_option('build_osx_bundle') ? 'TRUE' : 'FALSE'])
|
|
build_dmg_sh = find_program(meson.project_source_root() / 'tools/osx-dmg.sh')
|
|
run_target('osx-build-dmg',
|
|
command: [build_dmg_sh, meson.project_source_root(), meson.project_build_root(), meson.project_version()])
|
|
else
|
|
conf_pkg.set('AEGISUB_COMMAND', 'aegisub')
|
|
|
|
desktop_template = configure_file(input: 'desktop/aegisub.desktop.template.in',
|
|
output: 'aegisub.desktop.template',
|
|
configuration: conf_pkg)
|
|
|
|
i18n = import('i18n')
|
|
i18n.merge_file(input: desktop_template,
|
|
output: 'aegisub.desktop',
|
|
type: 'desktop',
|
|
po_dir: '../po',
|
|
install: true,
|
|
install_dir: datadir / 'applications')
|
|
|
|
aegisub_logos = ['16x16.png', '22x22.png', '24x24.png', '32x32.png', '48x48.png', '64x64.png', 'scalable.svg']
|
|
|
|
foreach s: aegisub_logos
|
|
dir = s.split('.')[0]
|
|
ext = s.split('.')[1]
|
|
install_data('desktop' / dir / 'aegisub.' + ext,
|
|
install_dir: datadir / 'icons' / 'hicolor' / dir / 'apps')
|
|
endforeach
|
|
endif
|