From f0a2ba958f34c4f39bfe71642f72e8191bbb991d Mon Sep 17 00:00:00 2001 From: Emmanuele Bassi Date: Sun, 21 Mar 2021 14:35:17 +0000 Subject: build: Add dist script We want to ship the generated API reference in the release archive. --- build-aux/dist.py | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 build-aux/dist.py (limited to 'build-aux/dist.py') diff --git a/build-aux/dist.py b/build-aux/dist.py new file mode 100644 index 000000000..4f1a18df2 --- /dev/null +++ b/build-aux/dist.py @@ -0,0 +1,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) -- cgit v1.2.1