@kugel- commented on this pull request.
@@ -0,0 +1,128 @@
+configure_file(input: 'geany.1.in', + output: 'geany.1', + install: true, + install_dir: join_paths(join_paths(prefix, get_option('mandir'), 'man1')), + configuration: cdata) + +if rst2pdf.found() + custom_target('pdf-manual', + input: ['geany.txt'], + output: ['geany-@0@.pdf'.format(cdata.get('VERSION'))], + command: [rst2pdf, '@INPUT@', '-o', '@OUTPUT@'], + build_by_default: true) +endif + +tarball = run_command('test', '-f', 'geany.html')
I'm aiming to be compatible to Ubuntu 18.04, meaning meson 0.45. That has bitten a few times already ;-)