build_bionic.cmake 838 B

12345678910111213141516171819202122
  1. # ---------- bionic ----------
  2. # Above line is mandatory!
  3. # rules to build deb package for Ubuntu 18.04 (bionic)
  4. message ( STATUS "Will create DEB for Ubuntu 18.04 (bionic)" )
  5. set ( flavour "ubuntu" )
  6. # we provide explicit dependencies, so shlideps is not necessary
  7. set ( disable_shlideps ON )
  8. # 'converter'
  9. set ( CPACK_DEBIAN_CONVERTER_PACKAGE_DEPENDS "libc6 (>= 2.27), libgcc1 (>= 1:3.4), libstdc++6 (>= 5.2)" )
  10. # 'server-core'
  11. set ( CPACK_DEBIAN_SEARCHD_PACKAGE_DEPENDS "libc6 (>= 2.27), libgcc1 (>= 1:3.4), libssl1.1 (>= 1.1.0), libstdc++6 (>= 5.2), zlib1g (>= 1:1.2.0)" )
  12. # 'tools'
  13. set ( CPACK_DEBIAN_TOOLS_PACKAGE_DEPENDS "libc6 (>= 2.27), libgcc1 (>= 1:3.4), libstdc++6 (>= 5.2), zlib1g (>= 1:1.1.4)" )
  14. set ( CPACK_DEBIAN_TOOLS_PACKAGE_SUGGESTS "libmysqlclient20, libpq5, libexpat1, libodbc1" )
  15. include ( builds/CommonDeb )