From 49cc6de9589322dd349d7d35efe7f45542e463cb Mon Sep 17 00:00:00 2001 From: Matt Turner Date: Tue, 23 Aug 2022 20:57:33 -0400 Subject: build: Use GNOME module post_install() --- meson.build | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'meson.build') diff --git a/meson.build b/meson.build index a17f9fdf..7c993e09 100644 --- a/meson.build +++ b/meson.build @@ -1,6 +1,6 @@ project('zenity', 'c', version: '3.43.0', - meson_version: '>=0.53.0', + meson_version: '>=0.57.0', license: 'LGPL-2.1-or-later' ) @@ -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, +) -- cgit From fd3bdb0fb98a96c207439774e51b4cc6a6eff4bf Mon Sep 17 00:00:00 2001 From: Logan Rathbone Date: Wed, 25 Jan 2023 01:17:44 -0500 Subject: build: Replace deprecated functions --- meson.build | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'meson.build') diff --git a/meson.build b/meson.build index 7c993e09..22195c58 100644 --- a/meson.build +++ b/meson.build @@ -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( -- cgit From 7bf8c8910d34bfb2b883b32118b93b68d44dd77b Mon Sep 17 00:00:00 2001 From: Logan Rathbone Date: Wed, 25 Jan 2023 01:39:31 -0500 Subject: Zenity 3.44.0 --- meson.build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'meson.build') diff --git a/meson.build b/meson.build index 22195c58..091e491c 100644 --- a/meson.build +++ b/meson.build @@ -1,5 +1,5 @@ project('zenity', 'c', - version: '3.43.0', + version: '3.44.0', meson_version: '>=0.57.0', license: 'LGPL-2.1-or-later' ) -- cgit