libeigen_3.3.7.bb 808 B

12345678910111213141516171819202122
  1. DESCRIPTION = "Eigen is a C++ template library for linear algebra: matrices, vectors, numerical solvers, and related algorithms."
  2. AUTHOR = "Benoît Jacob and Gaël Guennebaud and others"
  3. HOMEPAGE = "http://eigen.tuxfamily.org/"
  4. LICENSE = "MPL-2.0"
  5. LIC_FILES_CHKSUM = "file://COPYING.MPL2;md5=815ca599c9df247a0c7f619bab123dad"
  6. SRC_URI = "git://gitlab.com/libeigen/eigen.git;protocol=http;nobranch=1"
  7. SRCREV = "21ae2afd4edaa1b69782c67a54182d34efe43f9c"
  8. S = "${WORKDIR}/git"
  9. inherit cmake
  10. FILES_${PN} = "${libdir}"
  11. FILES_${PN}-dev = "${includedir} ${datadir}/eigen3/cmake ${datadir}/cmake/Modules ${datadir}/pkgconfig"
  12. # ${PN} is empty so we need to tweak -dev and -dbg package dependencies
  13. RDEPENDS_${PN}-dev = ""
  14. RRECOMMENDS_${PN}-dbg = "${PN}-dev (= ${EXTENDPKGV})"
  15. BBCLASSEXTEND = "native nativesdk"