-
Notifications
You must be signed in to change notification settings - Fork 68
Expand file tree
/
Copy pathmeson.build
More file actions
104 lines (89 loc) · 3.05 KB
/
meson.build
File metadata and controls
104 lines (89 loc) · 3.05 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
project('gradia', 'c',
version: '1.13.0',
meson_version: '>= 1.0.0',
default_options: ['warning_level=2',
'werror=false'
],
)
# Import modules
i18n = import('i18n')
gnome = import('gnome')
python = import('python')
# Project information
PROJECT_URL = 'https://gradia.alexandervanhee.be/'
VCS_URL = 'https://github.com/AlexanderVanhee/Gradia'
BUGTRACKER_URL = 'https://github.com/AlexanderVanhee/Gradia/issues'
HELP_URL = 'https://github.com/AlexanderVanhee/Gradia/discussions'
# Constants
PROJECT_RDNN_NAME = 'be.alexandervanhee.gradia'
ROOT_PATH = '/be/alexandervanhee/gradia'
PKGDATA_DIR = join_paths(get_option('prefix'), get_option('datadir'), meson.project_name())
MODULE_DIR = join_paths(PKGDATA_DIR, 'gradia')
# Set APPLICATION_ID
APPLICATION_ID = PROJECT_RDNN_NAME
# Required dependencies
dependency('glib-2.0')
dependency('gtk4', version: '>= 4.12.0')
dependency('libadwaita-1', version: '>= 1.5.0')
dependency('pygobject-3.0', version: '>= 3.48.0')
dependency('gtksourceview-5')
# Python installation directory
PY_INSTALLDIR = python.find_installation('python3')
# Check if python3 is installed
if not PY_INSTALLDIR.found()
error('No valid python3 binary found!')
endif
git_bin = find_program('git', required: false)
# Set APPLICATION_ID and VERSION_SUFFIX
if get_option('buildtype') == 'debug'
if git_bin.found()
VCS_TAG = run_command('git', 'rev-parse', '--short', 'HEAD', check: true).stdout().strip()
else
VCS_TAG = ''
endif
if VCS_TAG == ''
VERSION_SUFFIX = '-devel'
else
VERSION_SUFFIX = '-@0@'.format(VCS_TAG)
endif
APPLICATION_ID = '@0@.Devel'.format(PROJECT_RDNN_NAME)
else
VERSION_SUFFIX = ''
APPLICATION_ID = PROJECT_RDNN_NAME
endif
# OCR Directories
OCR_TESSERACT_CMD = '/app/bin/tesseract'
OCR_ORIGINAL_TESSDATA_DIR = '/app/share/tessdata'
enable_ocr = get_option('enable-ocr')
# Install configuration data
conf = configuration_data()
conf.set('APP_ID', APPLICATION_ID)
conf.set('ROOT_PATH', ROOT_PATH)
conf.set('PKGDATA_DIR', PKGDATA_DIR)
conf.set('DATA_DIR', join_paths(get_option('prefix'), get_option('datadir')))
conf.set('LOCALE_DIR', join_paths(get_option('prefix'), get_option('localedir')))
conf.set('PYTHON', PY_INSTALLDIR.full_path())
conf.set('VERSION', meson.project_version() + VERSION_SUFFIX)
conf.set('BUILD_TYPE', get_option('buildtype'))
conf.set('SCHEMAS_DIR', PKGDATA_DIR)
conf.set('SOURCE_DIR', meson.current_source_dir())
conf.set('BUILD_DIR', meson.current_build_dir())
conf.set('ENABLE_OCR', enable_ocr)
conf.set('OCR_TESSERACT_CMD', OCR_TESSERACT_CMD)
conf.set('OCR_ORIGINAL_TESSDATA_DIR', OCR_ORIGINAL_TESSDATA_DIR)
# Install project information
conf.set('RELEASE_VER', meson.project_version())
conf.set('PROJECT_URL', PROJECT_URL)
conf.set('VCS_URL', VCS_URL)
conf.set('BUGTRACKER_URL', BUGTRACKER_URL)
conf.set('HELP_URL', HELP_URL)
# Subdirs
subdir('data')
subdir('gradia')
subdir('po')
# Execute post-installation GTK/GNOME scripts
gnome.post_install(
glib_compile_schemas: true,
gtk_update_icon_cache: true,
update_desktop_database: true,
)