diff options
author | rbuj <[email protected]> | 2019-10-14 00:22:29 +0200 |
---|---|---|
committer | raveit65 <[email protected]> | 2019-10-22 23:26:36 +0200 |
commit | 066a7b1974e68db56eb86b59f758ef5580473480 (patch) | |
tree | 45b9232b58f1a767aba070bcf443d2476d7b0495 /mate-about | |
parent | 84f4c42af3ff687109e99ee02d217dcc9e399f27 (diff) | |
download | mate-desktop-066a7b1974e68db56eb86b59f758ef5580473480.tar.bz2 mate-desktop-066a7b1974e68db56eb86b59f758ef5580473480.tar.xz |
build: introduce RELEASE_YEAR variable for mate-about dialog
Test 1:
./autogen.sh --prefix=/usr
cat mate-about/mate-about.h
make && sudo make install
Test 2:
mkdir builddir
meson setup builddir --prefix=/usr
cat builddir/mate-about/mate-about.h
sudo ninja -C builddir install
Diffstat (limited to 'mate-about')
-rw-r--r-- | mate-about/Makefile.am | 3 | ||||
-rw-r--r-- | mate-about/mate-about.h.in (renamed from mate-about/mate-about.h) | 2 | ||||
-rw-r--r-- | mate-about/meson.build | 11 |
3 files changed, 14 insertions, 2 deletions
diff --git a/mate-about/Makefile.am b/mate-about/Makefile.am index 7495e05..4df5e27 100644 --- a/mate-about/Makefile.am +++ b/mate-about/Makefile.am @@ -19,9 +19,10 @@ versiondir = $(datadir)/mate-about version_DATA = mate-version.xml EXTRA_DIST = $(desktop_in_files) \ + mate-about.h.in \ mate-version.xml.in -CLEANFILES = $(desktop_DATA) $(bin_PROGRAMS) $(version_DATA) +CLEANFILES = $(desktop_DATA) $(bin_PROGRAMS) $(version_DATA) mate-about.h #-include $(top_srcdir)/git.mk diff --git a/mate-about/mate-about.h b/mate-about/mate-about.h.in index 08ec23c..ae3d2a8 100644 --- a/mate-about/mate-about.h +++ b/mate-about/mate-about.h.in @@ -33,7 +33,7 @@ const char* website = "https://mate-desktop.org/"; const char* copyright = N_("Copyright © 1997-2011 GNOME developers\n" "Copyright © 2011 Perberos\n" - "Copyright © 2012-2019 MATE developers"); + "Copyright © 2012-@RELEASE_YEAR@ MATE developers"); /* Increment comments_count if you add other comments. This will be * used to choose a random comment. */ diff --git a/mate-about/meson.build b/mate-about/meson.build index 0ef8318..3d25310 100644 --- a/mate-about/meson.build +++ b/mate-about/meson.build @@ -1,5 +1,6 @@ date_exe = find_program('date') mate_date = run_command(date_exe, '+%Y-%m-%d').stdout().strip() +mate_year = run_command(date_exe, '+%Y').stdout().strip() mate_data = configuration_data() @@ -10,6 +11,9 @@ mate_data.set('MATE_PLATFORM', mate_platform) mate_data.set('MATE_MINOR', mate_minor) mate_data.set('MATE_MICRO', mate_micro) +mate_about_data = configuration_data() +mate_about_data.set('RELEASE_YEAR', mate_year) + executable('mate-about', 'mate-about.c', c_args: [ @@ -37,3 +41,10 @@ mate_version_xml_in = configure_file( install: true, install_dir: join_paths(get_option('datadir'), 'mate-about'), ) + +mate_about_h_in = configure_file( + input: 'mate-about.h.in', + output: 'mate-about.h', + configuration: mate_about_data, + install: false, +) |