gnome-chess/data/meson.build
Niels De Graef ce6465a9e2 Ported build system to Meson.
See the following links for more info:
* https://mesonbuild.com
* https://wiki.gnome.org/Initiatives/GnomeGoals/MesonPorting

Signed-off-by: Niels De Graef <nielsdegraef@gmail.com>

https://bugzilla.gnome.org/show_bug.cgi?id=787346
2017-09-08 23:09:12 -05:00

34 lines
698 B
Meson

subdir('icons')
# The SVG's of the chess pieces
install_subdir('pieces',
install_dir: join_paths(datadir, meson.project_name(), 'pieces')
)
# The engines.conf file
install_data('engines.conf',
install_dir: pkgsysconfdir,
)
# The desktop file
i18n.merge_file(
input: 'gnome-chess.desktop.in',
output: 'gnome-chess.desktop',
type: 'desktop',
po_dir: po_dir,
install: true,
install_dir: join_paths(datadir, 'applications')
)
# The appdata file
i18n.merge_file(
input: 'gnome-chess.appdata.xml.in',
output: 'gnome-chess.appdata.xml',
type: 'xml',
po_dir: po_dir,
install: true,
install_dir: join_paths(datadir, 'metainfo')
)
# The man page
install_man('gnome-chess.6')