DESCRIPTION = "A power library in SLP C API" HOMEPAGE = "http://nohomepage.org" SECTION = "System/API" LICENSE = "Apache-2.0" SRC_URI = "" S = "${WORKDIR}/git" inherit autotools-brokensep BBCLASSEXTEND = "" PROVIDES = "" #PROVIDES by capi-system-power #PROVIDES by capi-system-power-dev RDEPENDS = "" #RDEPENDS of capi-system-power-dev (capi-system-${PN}-dev) RDEPENDS_capi-system-${PN}-dev += "capi-system-power" DEPENDS = "" #DEPENDS of capi-system-power DEPENDS_append_class-native = " cmake-native" DEPENDS_append_class-target = " cmake-native" DEPENDS += "dlog" DEPENDS += "glib-2.0" DEPENDS += "common" DEPENDS += "libslp-pm" DEPENDS += "vconf" do_prep() { cd ${S} chmod -Rf a+rX,u+w,g-w,o-w ${S} #setup -q } do_patch_append() { bb.build.exec_func('do_prep', d) } do_configure() { } do_compile() { cd ${S} LANG=C export LANG unset DISPLAY LD_AS_NEEDED=1; export LD_AS_NEEDED ; cp ${S}/packaging/capi-system-power.manifest . MAJORVER=`echo 0.1.1 | awk 'BEGIN {FS="."}{print $1}'` cmake \ -DCMAKE_VERBOSE_MAKEFILE=ON \ -DCMAKE_INSTALL_PREFIX:PATH=${prefix} \ -DCMAKE_INSTALL_LIBDIR:PATH=${prefix}/lib \ -DINCLUDE_INSTALL_DIR:PATH=${prefix}/include \ -DLIB_INSTALL_DIR:PATH=${prefix}/lib \ -DSYSCONF_INSTALL_DIR:PATH=${sysconfdir} \ -DSHARE_INSTALL_PREFIX:PATH=${prefix}/share \ -DCMAKE_SKIP_RPATH:BOOL=ON \ -DBUILD_SHARED_LIBS:BOOL=ON \ ${EXTRA_OECMAKE} . -DFULLVER=0.1.1 -DMAJORVER=${MAJORVER} oe_runmake } do_install() { echo export RPM_BUILD_ROOT=${D} cd ${S} LANG=C export LANG unset DISPLAY rm -rf ${D} mkdir -p ${D} oe_runmake \ DESTDIR=${D} \ INSTALL_ROOT=${D} \ BINDIR=${prefix}/bin \ install rm -f ${D}${infodir}/dir find ${D} -regex ".*\.la$" | xargs rm -f -- find ${D} -regex ".*\.a$" | xargs rm -f -- } pkg_postinst_${PN}() { #!/bin/sh -e [ "x\$D" == "x" ] && ldconfig } pkg_postrm_${PN}() { #!/bin/sh -e [ "x\$D" == "x" ] && ldconfig } PACKAGES = "${PN}-dbg ${PN}-doc ${PN}-locale" PACKAGES += " capi-system-power " PACKAGES += " capi-system-power-dev " capi-system-power_files = "" capi-system-power_files += "${prefix}/lib/libcapi-system-power.so.*" MANIFESTFILES_capi-system-${PN} = "capi-system-power.manifest" capi-system-power-dev_files = "" capi-system-power-dev_files += "${prefix}/include/system/power.h" capi-system-power-dev_files += "${prefix}/lib/pkgconfig/*.pc" capi-system-power-dev_files += "${prefix}/lib/libcapi-system-power.so" MANIFESTFILES_capi-system-${PN}-dev = "capi-system-power.manifest" FILES_capi-system-${PN} = "${capi-system-power_files}" FILES_capi-system-${PN}-dev = "${capi-system-power-dev_files}" PKG_capi-system-power= "capi-system-power" PKG_capi-system-power-dev= "capi-system-power-dev" require power-extraconf.inc