From 6ba8a15d3a27cff680a7d77e073f548e6ca1a760 Mon Sep 17 00:00:00 2001 From: Benjamin Berg Date: Thu, 13 Jun 2019 15:00:25 +0200 Subject: [PATCH] build: We are now working on version 2 of libfprint Bump the version to 1.90.0, the soname to 2.0.0. Also rename the pkgconfig file to libfprint2.pc. --- meson.build | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/meson.build b/meson.build index b7f7f315..c3aee14a 100644 --- a/meson.build +++ b/meson.build @@ -1,5 +1,5 @@ project('libfprint', [ 'c', 'cpp' ], - version: '1.0', + version: '1.90.0', license: 'LGPLv2.1+', default_options: [ 'buildtype=debugoptimized', @@ -35,7 +35,7 @@ common_cflags = cc.get_supported_arguments([ # maintaining compatibility with the previous libtool versioning # current = binary - interface # revision = interface -soversion = 0 +soversion = 2 current = 0 revision = 0 libversion = '@0@.@1@.@2@'.format(soversion, current, revision) @@ -142,6 +142,6 @@ pkgconfig.generate( version: meson.project_version(), libraries: libfprint, subdirs: 'libfprint', - filebase: 'libfprint', + filebase: 'libfprint2', install_dir: join_paths(get_option('libdir'), 'pkgconfig'), )