gnome-chess/data/meson.build

35 lines
698 B
Meson
Raw Normal View History

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')