summaryrefslogtreecommitdiff
path: root/build-aux/dist.py
blob: 4f1a18df2373b9ea129f01d16807c544511b8778 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#!/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)