diff options
Diffstat (limited to 'nature/meson.build')
-rw-r--r-- | nature/meson.build | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/nature/meson.build b/nature/meson.build new file mode 100644 index 0000000..47799b4 --- /dev/null +++ b/nature/meson.build @@ -0,0 +1,30 @@ +# replace @datadir@ and translate +metadata = 'mate-nature.xml' +i18n.merge_file(metadata, + input: configure_file( + input: metadata + '.in.in', + output: metadata + '.in', + configuration : conf + ), + output: metadata, + po_dir: '../po', + data_dirs: '..', + install: true, + install_dir: metadatadir + ) + +backgrounds = [ + 'Aqua.jpg', + 'Blinds.jpg', + 'Dune.jpg', + 'FreshFlower.jpg', + 'Garden.jpg', + 'GreenMeadow.jpg', + 'LadyBird.jpg', + 'RainDrops.jpg', + 'Storm.jpg', + 'TwoWings.jpg', + 'Wood.jpg', + 'YellowFlower.jpg', +] +install_data(backgrounds, install_dir: join_paths(backgrounddir, 'nature')) |