meta-ros/recipes-extended/sophus/sophus_0.9.1.bb

24 lines
884 B
BlitzBasic
Raw Permalink Normal View History

2017-01-02 18:59:43 +08:00
DESCRIPTION = "C++ implementation of Lie Groups using Eigen."
SECTION = "devel"
LICENSE = "MIT"
LIC_FILES_CHKSUM = "file://sophus/sophus.hpp;beginline=5;endline=21;md5=4cb78e93094b91e5b1616cb93ab7e635"
DEPENDS = "libeigen"
SRC_URI = "https://github.com/stonier/sophus/archive/${PV}.tar.gz;;downloadfilename=${PN}_${PV}.tar.gz"
SRC_URI[md5sum] = "de77d9f4b769df91bd57c5224f7f1b88"
SRC_URI[sha256sum] = "962165b5233c5d4b4d1f6c36ea77e6f3d004b9fff907f617f9952f84534177cc"
S = "${WORKDIR}/sophus-${PV}"
inherit cmake
# CXXFLAGS are needed to compile eigen 3.3.1 headers properly
CXXFLAGS += "-Wno-deprecated-declarations -Wno-misleading-indentation -Wno-int-in-bool-context -Wno-ignored-attributes"
do_install_append() {
# remove sysroot library path from cmake config files
sed -i -e 's#${STAGING_DIR_TARGET}##g' \
${D}${datadir}/sophus/*.cmake
}