File: meson.build

package info (click to toggle)
gnome-video-effects 0.5.0-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye
  • size: 1,152 kB
  • sloc: sh: 49; makefile: 6
file content (28 lines) | stat: -rw-r--r-- 821 bytes parent folder | download
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
project('gnome-video-effects',
  version: '0.5.0',
  meson_version: '>= 0.43.0'
)

gnome = import('gnome')
i18n = import('i18n')

prefix = get_option('prefix')
datadir = join_paths(prefix, get_option('datadir'))
pkgdatadir = join_paths(datadir, meson.project_name())
pkgconfigdir = join_paths(datadir, 'pkgconfig')

subdir('effects')
subdir('po')

# Can't use pkgconfig helper https://github.com/mesonbuild/meson/issues/2253
conf = configuration_data()
conf.set('prefix', prefix)
conf.set('datarootdir', pkgdatadir)
conf.set('VERSION', meson.project_version())

pkg = configure_file(configuration: conf,
                     input: 'gnome-video-effects.pc.in',
                     install: true,
                     install_dir: join_paths(datadir, 'pkgconfig'),
                     output: 'gnome-video-effects.pc')