summaryrefslogtreecommitdiff
path: root/data/sounds/meson.build
blob: 329c4b73981255c278bd58b41c6347dd669a8478 (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
xml_data = configuration_data()
xml_data.set('datadir', mm_datadir)
xml_in_file = configure_file(
  input : 'mate-sounds-default.xml.in.in',
  output : 'mate-sounds-default.xml.in',
  configuration : xml_data
)

i18n.merge_file(
  input: xml_in_file,
  output: 'mate-sounds-default.xml',
  po_dir: po_dir,
  data_dirs: its_dir,
  install: true,
  install_dir: join_paths(mm_pkgdatadir, 'sounds')
)

oggs = [
  'bark.ogg',
  'drip.ogg',
  'glass.ogg',
  'sonar.ogg'
]
foreach ogg: oggs
    install_data(
    ogg,
    install_dir: join_paths(mm_datadir, 'sounds', 'mate', 'default', 'alerts')
  )
endforeach