ff4ff35918
Red Bear OS is a full fork. All sources must be available from git clone with zero network access. Removed gitignore rules that excluded fetched source trees under recipes/*/source/, local/recipes/kde/*/source/, local/recipes/qt/*/source/, and vendor source trees. Build artifacts (target/, build/, source.tar, *.o, *.so) remain excluded. 127291 files added — kernel, relibc, base, bootloader, pkgar, all KDE/Qt frameworks, mesa, wayland, DRM drivers, and every other recipe source.
34 lines
803 B
Meson
34 lines
803 B
Meson
|
|
if build_machine.system() != 'windows'
|
|
install_man('update-mime-database.1')
|
|
endif
|
|
|
|
freedesktop_org_xml = i18n.merge_file(
|
|
input: 'freedesktop.org.xml.in',
|
|
output: 'freedesktop.org.xml',
|
|
data_dirs: '.',
|
|
po_dir: '../po',
|
|
type: 'xml',
|
|
install: true,
|
|
install_dir: get_option('datadir') / 'mime' / 'packages',
|
|
)
|
|
|
|
install_data(
|
|
[ 'its/shared-mime-info.loc', 'its/shared-mime-info.its', ],
|
|
install_dir : get_option('datadir') / 'gettext/its'
|
|
)
|
|
|
|
if xmlto.found()
|
|
custom_target('shared-mime-info-spec-html',
|
|
input : 'shared-mime-info-spec.xml',
|
|
output: 'shared-mime-info-spec-html',
|
|
command: [
|
|
xmlto,
|
|
'-o', '@OUTPUT@',
|
|
'html-nochunks',
|
|
'@INPUT@',
|
|
],
|
|
build_by_default: true,
|
|
)
|
|
endif
|