libxcrypt.inc 1.0 KB

123456789101112131415161718192021222324252627282930313233
  1. SUMMARY = "Extended cryptographic library (from glibc)"
  2. DESCRIPTION = "Forked code from glibc libary to extract only crypto part."
  3. HOMEPAGE = "https://github.com/besser82/libxcrypt"
  4. SECTION = "libs"
  5. LICENSE = "LGPLv2.1"
  6. LIC_FILES_CHKSUM = "file://LICENSING;md5=102923b6e1b02a85c5a1203fa87d151d \
  7. file://COPYING.LIB;md5=4fbd65380cdd255951079008b364516c \
  8. "
  9. inherit autotools pkgconfig
  10. SRC_URI = "git://github.com/besser82/libxcrypt.git;branch=${SRCBRANCH}"
  11. SRCREV = "6b110bcd4f4caa61fc39c7339d30adc20a7dd177"
  12. SRCBRANCH ?= "develop"
  13. PROVIDES = "virtual/crypt"
  14. FILES_${PN} = "${libdir}/libcrypt*.so.* \
  15. ${libdir}/libcrypt-*.so \
  16. ${libdir}/libowcrypt*.so.* \
  17. ${libdir}/libowcrypt-*.so \
  18. "
  19. S = "${WORKDIR}/git"
  20. BUILD_CPPFLAGS = "-I${STAGING_INCDIR_NATIVE}"
  21. TARGET_CPPFLAGS = "-I${STAGING_DIR_TARGET}${includedir} -Wno-error"
  22. CPPFLAGS_append_class-nativesdk = " -Wno-error"
  23. API = "--disable-obsolete-api"
  24. EXTRA_OECONF += "${API}"
  25. BBCLASSEXTEND = "native nativesdk"