From 78d5889b2036d25d49e2e39e30d71ff81b098c36 Mon Sep 17 00:00:00 2001 From: Adrian Cochrane Date: Mon, 27 Aug 2018 17:56:03 +1200 Subject: [PATCH] Add Meson build system. --- meson.build | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 meson.build diff --git a/meson.build b/meson.build new file mode 100644 index 0000000..7a23b40 --- /dev/null +++ b/meson.build @@ -0,0 +1,11 @@ +project('fonts-lora') + +install_data( + 'Lora-Bold.ttf', 'Lora-BoldItalic.ttf', 'Lora-Italic.ttf', 'Lora-Regular.ttf', + install_dir: join_paths(get_option('datadir'), 'fonts', 'lora') +) + +install_data( + 'SIL Open Font License.txt', + install_dir: join_paths(get_option('datadir'), 'fonts-lora') +)