* Begin work on search provider * Initial search provider work, organize meson * Initial work on icons * Implement LaunchSearch * Don't hold arbitrary reference to service I don't know why Lollypop does this * Send notification, pad images * Update translations * Fix init_search_term typing
25 lines
760 B
Meson
25 lines
760 B
Meson
# Heavily inspired by https://gitlab.gnome.org/World/lollypop/-/blob/master/search-provider/meson.build
|
|
|
|
service_dir = join_paths(get_option('datadir'), 'dbus-1', 'services')
|
|
serarch_provider_dir = join_paths(get_option('datadir'), 'gnome-shell', 'search-providers')
|
|
|
|
configure_file(
|
|
input: 'cartridges-search-provider.in',
|
|
output: 'cartridges-search-provider',
|
|
configuration: conf,
|
|
install_dir: libexecdir
|
|
)
|
|
|
|
configure_file(
|
|
input: 'hu.kramo.Cartridges.SearchProvider.service.in',
|
|
output: app_id + '.SearchProvider.service',
|
|
configuration: conf,
|
|
install_dir: service_dir
|
|
)
|
|
|
|
configure_file(
|
|
input: 'hu.kramo.Cartridges.SearchProvider.ini',
|
|
output: app_id + '.SearchProvider.ini',
|
|
configuration: conf,
|
|
install_dir: serarch_provider_dir
|
|
) |