diff options
author | Jeremy Bicha <jeremy.bicha@canonical.com> | 2023-01-27 18:52:43 -0500 |
---|---|---|
committer | Jeremy Bicha <jeremy.bicha@canonical.com> | 2023-01-27 18:52:43 -0500 |
commit | 8bac27ca3dbe32eb351f4a5df5be5d47aad568d9 (patch) | |
tree | 05907d3db6b56c647647b71819b5a68e5e49803f /meson.build | |
parent | releasing package zenity version 3.43.0-1 (diff) | |
parent | New upstream version 3.44.0 (diff) | |
download | zenity-8bac27ca3dbe32eb351f4a5df5be5d47aad568d9.tar.gz zenity-8bac27ca3dbe32eb351f4a5df5be5d47aad568d9.tar.bz2 zenity-8bac27ca3dbe32eb351f4a5df5be5d47aad568d9.zip |
Update upstream source from tag 'upstream/3.44.0'
Update to upstream version '3.44.0'
with Debian dir 803175ae5e7ece2df9e7717765dd32844b3e4f81
Diffstat (limited to 'meson.build')
-rw-r--r-- | meson.build | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/meson.build b/meson.build index a17f9fdf..091e491c 100644 --- a/meson.build +++ b/meson.build @@ -1,6 +1,6 @@ project('zenity', 'c', - version: '3.43.0', - meson_version: '>=0.53.0', + version: '3.44.0', + meson_version: '>=0.57.0', license: 'LGPL-2.1-or-later' ) @@ -16,7 +16,7 @@ zenity_datadir = join_paths(zenity_prefix, get_option('datadir'), 'zenity') zenity_localedir = join_paths(zenity_prefix, get_option('localedir')) zenity_root_dir = include_directories('.') -zenity_po_dir = join_paths(meson.source_root(), 'po') +zenity_po_dir = join_paths(meson.project_source_root(), 'po') gnome = import('gnome') i18n = import('i18n') @@ -84,7 +84,7 @@ x11 = dependency('x11', required: false) perl = find_program('perl', required: false) if perl.found() - zenity_conf.set('PERL', perl.path()) + zenity_conf.set('PERL', perl.full_path()) endif configure_file( @@ -110,4 +110,6 @@ subdir('data') subdir('po') subdir('help') -meson.add_install_script('meson_post_install.py') +gnome.post_install( + gtk_update_icon_cache: true, +) |