dmapi_2.2.12.bb 1.2 KB

12345678910111213141516171819202122232425262728293031
  1. SUMMARY = "Library functions to get attribute bits"
  2. DESCRIPTION = "The Data Management API (DMAPI/XDSM) allows implementation \
  3. of hierarchical storage management software with no kernel \
  4. modifications as well as high-performance dump programs \
  5. without requiring "raw" access to the disk and knowledge \
  6. of filesystem structures.This interface is implemented by \
  7. the libdm library."
  8. HOMEPAGE = "http://oss.sgi.com/projects/xfs"
  9. SECTION = "base"
  10. LICENSE = "LGPLv2.1"
  11. LIC_FILES_CHKSUM = "file://doc/COPYING;md5=1678edfe8de9be9564d23761ae2fa794"
  12. DEPENDS = "xfsprogs"
  13. SRC_URI = "ftp://oss.sgi.com/projects/xfs/cmd_tars/dmapi-${PV}.tar.gz \
  14. file://remove-install-as-user.patch \
  15. file://dmapi_aarch64_configure_support.patch \
  16. "
  17. SRC_URI[md5sum] = "cd825d4e141c16011367e0a0dd98c9c5"
  18. SRC_URI[sha256sum] = "b18e34f47374f6adf7c164993c26df36986a009b86aa004ef9444102653aea69"
  19. inherit autotools-brokensep
  20. PARALLEL_MAKE = ""
  21. EXTRA_OEMAKE += "LIBTOOL="${HOST_SYS}-libtool --tag=CC" V=1"
  22. do_install () {
  23. export DIST_ROOT=${D}
  24. install -d ${D}${libdir}
  25. oe_runmake install install-dev PKG_DEVLIB_DIR=${libdir}
  26. }