summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEmmanuele Bassi <ebassi@gnome.org>2021-03-21 14:35:17 +0000
committerEmmanuele Bassi <ebassi@gnome.org>2021-03-21 14:58:09 +0000
commitf0a2ba958f34c4f39bfe71642f72e8191bbb991d (patch)
tree4646e8977b4dea1341eafbe22e59acc69f6cf442
parent5e1ecb460b76050cf5cf06c0dbd29489806cf9f6 (diff)
downloadgdk-pixbuf-f0a2ba958f34c4f39bfe71642f72e8191bbb991d.tar.gz
build: Add dist script
We want to ship the generated API reference in the release archive.
-rw-r--r--build-aux/dist.py22
-rw-r--r--meson.build4
2 files changed, 26 insertions, 0 deletions
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)
diff --git a/meson.build b/meson.build
index 4725e9498..aa1179453 100644
--- a/meson.build
+++ b/meson.build
@@ -408,6 +408,10 @@ if not meson.is_cross_build()
endif
endif
+if not meson.is_subproject()
+ meson.add_dist_script('build-aux/dist.py')
+endif
+
summary = [
'',
'GDK-Pixbuf @0@'.format(meson.project_version()),