meson: install compat ethumb_client.pc file

in autotools this was not having the same naming convetion than in meson
right now. This installs a duplicated .pc file, so the one with the
different name can be dropped at some point.

Fix terminology compilation.

Differential Revision: https://phab.enlightenment.org/D7132
This commit is contained in:
Marcel Hollerbach 2018-10-03 18:06:33 +02:00
parent c68ac6c1b7
commit 22d7cd1243
1 changed files with 9 additions and 0 deletions

View File

@ -267,6 +267,15 @@ foreach package : subprojects
libraries : tmp_pub_deps,
requires : package[8],
)
if package_name == 'ethumb_client'
pkgconfig.generate(tmp_lib,
name : package_name,
subdirs : package_version_name,
version : version_major + '.' + version_minor,
libraries : tmp_pub_deps,
requires : package[8],
)
endif
endif
else
message(package_name+' disabled!')