commit b3b47ad3e5de78da6d6bb7e6bf4474732bef3a1d parent d70b12e85a7e0230f5a8ca6bd79aac0a510b3806 Author: St John Karp <contact@stjo.hn> Date: Fri, 8 Jul 2022 08:48:59 -0400 appstream: Don't include the docs and po subfolders These pull in a lot of dependencies that I don't think are needed. Diffstat:
M | flatpak/appstream/build | | | 5 | +++++ |
1 file changed, 5 insertions(+), 0 deletions(-)
diff --git a/flatpak/appstream/build b/flatpak/appstream/build @@ -6,6 +6,11 @@ for file in ../patches/* ; do patch -p1 < "$file" done +# Don't build the docs and languages, which pull in a lot of dependencies. +sed -e "s/^subdir('po\/')/#subdir('po\/')/" \ + -e "s/^subdir('docs\/')/#subdir('docs\/')/" meson.build > _ +mv -f _ meson.build + mkdir build cd build