-
-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathmeson.build
More file actions
66 lines (56 loc) · 1.91 KB
/
meson.build
File metadata and controls
66 lines (56 loc) · 1.91 KB
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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
project(
'hiit',
['c', 'vala'],
version: '1.9.1',
meson_version: '>= 0.59',
)
i18n = import('i18n')
gnome = import('gnome')
base_id = 'xyz.safeworlds.hiit'
homepage = 'https://apps.gnome.org/Hiit/'
issue_tracker = 'https://github.com/mfep/exercise-timer/issues'
translate_page = 'https://hosted.weblate.org/projects/exercise-timer/exercise-timer/'
donation_page = 'https://ko-fi.com/safeworlds'
copyright = '© 2023-2025 Exercise Timer developers'
developers = ['Lőrinc Serfőző https://the.safeworlds.xyz']
designers = ['Lőrinc Serfőző https://the.safeworlds.xyz']
dependencies = [
dependency('gtk4', version: '>= 4.0.0'),
dependency('libadwaita-1', version: '>= 1.0.0'),
dependency('json-glib-1.0', version: '>= 1.0.0'),
]
glib_compile_schemas = find_program('glib-compile-schemas', required: true)
desktop_file_validate = find_program('desktop-file-validate', required: false)
appstream_util = find_program('appstream-util', required: false)
version = meson.project_version()
prefix = get_option('prefix')
bindir = prefix / get_option('bindir')
localedir = prefix / get_option('localedir')
datadir = prefix / get_option('datadir')
pkgdatadir = datadir / meson.project_name()
iconsdir = datadir / 'icons'
podir = meson.project_source_root() / 'po'
gettext_package = meson.project_name()
add_project_arguments('-DGETTEXT_PACKAGE="' + gettext_package + '"', language: 'c')
if get_option('profile') == 'development'
profile = 'Devel'
vcs_tag = run_command('git', 'rev-parse', '--short', 'HEAD', check: false).stdout().strip()
if vcs_tag == ''
version_suffix = '-devel'
else
version_suffix = '-@0@'.format(vcs_tag)
endif
application_id = '@0@.@1@'.format(base_id, profile)
else
profile = ''
version_suffix = ''
application_id = base_id
endif
subdir('data')
subdir('po')
subdir('src')
gnome.post_install(
gtk_update_icon_cache: true,
glib_compile_schemas: true,
update_desktop_database: true,
)