1DESCRIPTION = "A regular expression library" 2HOMEPAGE = "https://github.com/google/re2/" 3LICENSE = "BSD-3-Clause" 4LIC_FILES_CHKSUM = "file://LICENSE;md5=3b5c31eb512bdf3cb11ffd5713963760" 5 6SRCREV = "166dbbeb3b0ab7e733b278e8f42a84f6882b8a25" 7 8SRC_URI = "git://github.com/google/re2.git;branch=main;protocol=https" 9 10S = "${WORKDIR}/git" 11 12inherit cmake 13 14EXTRA_OECMAKE += " \ 15 -DBUILD_SHARED_LIBS=ON \ 16 -DRE2_BUILD_TESTING=OFF \ 17" 18 19# Don't include so files in dev package 20FILES:${PN} = "${libdir}" 21FILES:${PN}-dev = "${includedir} ${libdir}/cmake" 22 23BBCLASSEXTEND = "native nativesdk" 24