12 lines
305 B
Meson
12 lines
305 B
Meson
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')
|
|
)
|