Control: retitle -1 libbiosoup-dev: Installs arch dependent cmake files This is because libbiosoup-dev has the following in its .cmake files:
contents of /usr/lib/cmake/biosoup/biosoupConfigVersion.cmake
75 # if the installed or the using project don't have
CMAKE_SIZEOF_VOID_P set, ignore it:
76 if("${CMAKE_SIZEOF_VOID_P}" STREQUAL "" OR "8" STREQUAL "")
77 return()
78 endif()
79
80 # check that the installed version has the same 32/64bit-ness as the
one which is currently searching:
81 if(NOT CMAKE_SIZEOF_VOID_P STREQUAL "8")
82 math(EXPR installedBits "8 * 8")
83 set(PACKAGE_VERSION "${PACKAGE_VERSION} (${installedBits}bit)")
84 set(PACKAGE_VERSION_UNSUITABLE TRUE)
85 endif()

