devilhorns pushed a commit to branch master. http://git.enlightenment.org/apps/express.git/commit/?id=c8beecb61fd45d99fc9ce6292300aab60dab5db4
commit c8beecb61fd45d99fc9ce6292300aab60dab5db4 Author: Christopher Michael <devilho...@comcast.net> Date: Tue Feb 16 13:23:05 2021 -0500 express: Change pkgconfig file to be libexpress This pkgconfig file is just for the library of express...as such, let's name it libexpress --- express.pc.in => libexpress.pc.in | 0 meson.build | 4 ++-- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/express.pc.in b/libexpress.pc.in similarity index 100% rename from express.pc.in rename to libexpress.pc.in diff --git a/meson.build b/meson.build index 6293773..346e46b 100644 --- a/meson.build +++ b/meson.build @@ -141,8 +141,8 @@ pkgconf.set('requirements_libexpress_libs', requirement_express_libs) pkg_install_dir = '@0@/pkgconfig'.format(get_option('libdir')) configure_file( - input : join_paths(meson.source_root(), 'express.pc.in'), - output : 'express.pc', + input : join_paths(meson.source_root(), 'libexpress.pc.in'), + output : 'libexpress.pc', configuration : pkgconf, install_dir : pkg_install_dir ) --