summaryrefslogtreecommitdiff
path: root/buildsystems/autotools/meson.build
blob: c39d3fb622f72a6e135b87fe14dfed2160111826 (plain)
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
configure_file(
  input: 'gtkdocize.in',
  output: 'gtkdocize',
  configuration: binary_in,
  install: true,
  install_dir: bindir,
)

custom_target(
  'gtk-doc.flat.make',
  input: 'gtk-doc.make',
  output: 'gtk-doc.flat.make',
  install: true,
  install_dir: pkgdatadir,
  capture: true,
  command: [
    'sed',
    '-e',
    's/EXTRA_DIST =/EXTRA_DIST +=/',
    '@INPUT@',
  ]
)

custom_target(
  'gtk-doc.m4',
  input: 'gtk-doc.m4',
  output: 'gtk-doc.m4',
  install: true,
  install_dir: autoconfdatadir,
  command: [
    'cp',
    '-f',
    '@INPUT@',
    '@OUTPUT@',
  ],
)

install_data(
  ['gtk-doc.make'],
  install_dir: pkgdatadir,
)