forked from fkinoshita/Telegraph
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmeson.build
47 lines (39 loc) · 1.08 KB
/
meson.build
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
project(
'telegraph',
version: '0.1.4',
meson_version: '>= 0.59.0',
license: 'GPL-3.0-only',
)
i18n = import('i18n')
python = import('python')
gnome = import('gnome')
project_id = 'io.github.fkinoshita.Telegraph'
project_name = 'Telegraph'
package_url = 'https://github.com/fkinoshita/Telegraph'
copyright = '© 2023 Felipe Kinoshita.'
contributors = '\n'.join([
'Felipe Kinoshita https://mastodon.social/@fkinoshita',
'gregorni https://fosstodon.org/@gregorni',
'axtlos https://axtlos.neocities.org'
])
designers = '\n'.join([
'',
])
artists = '\n'.join([
'Brage Fuglseth https://bragefuglseth.dev/',
])
dependency('gtk4', version: '>=4.9')
dependency('libadwaita-1', version: '>=1.2')
DATA_DIR = join_paths(get_option('prefix'), get_option('datadir'), meson.project_name())
application_id = project_id
version = meson.project_version()
top_source_dir = meson.current_source_dir()
gettext_package = meson.project_name()
subdir('data')
subdir('po')
subdir('src')
gnome.post_install(
glib_compile_schemas: true,
gtk_update_icon_cache: true,
update_desktop_database: true,
)