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.
23 lines
592 B
Python
23 lines
592 B
Python
#!/usr/bin/env python3
|
|
|
|
import os
|
|
import shutil
|
|
|
|
references = [
|
|
'docs/gdk-pixbuf',
|
|
'docs/gdk-pixdata',
|
|
]
|
|
|
|
sourceroot = os.environ.get('MESON_SOURCE_ROOT')
|
|
buildroot = os.environ.get('MESON_BUILD_ROOT')
|
|
distroot = os.environ.get('MESON_DIST_ROOT')
|
|
|
|
for reference in references:
|
|
src_path = os.path.join(buildroot, reference)
|
|
if os.path.exists(src_path):
|
|
dst_path = os.path.join(distroot, reference)
|
|
if os.path.isdir(src_path):
|
|
shutil.copytree(src_path, dst_path)
|
|
elif os.path.isfile(src_path):
|
|
shutil.copyfile(src_path, dst_path)
|