mirror of
https://git.yoctoproject.org/poky
synced 2026-02-25 10:59:41 +01:00
git-svn-id: https://svn.o-hand.com/repos/poky/trunk@343 311d38ba-8fff-0310-9ca6-ca027cbcb966
22 lines
615 B
BlitzBasic
22 lines
615 B
BlitzBasic
SECTION = "gpe/libs"
|
|
LICENSE = "BSD-X"
|
|
PRIORITY = "optional"
|
|
DEPENDS = "libxsettings libx11 libxt"
|
|
# libxt is required to stop configure breaking builds by
|
|
# including system paths to find it if it isn't present.
|
|
|
|
inherit autotools pkgconfig gpe
|
|
|
|
SRC_URI = "${GPE_MIRROR}/xsettings-client-${PV}.tar.bz2"
|
|
S = ${WORKDIR}/xsettings-client-${PV}
|
|
|
|
|
|
headers = "xsettings-client.h xsettings-common.h"
|
|
do_stage () {
|
|
oe_libinstall -so libXsettings-client ${STAGING_LIBDIR}
|
|
mkdir -p ${STAGING_INCDIR}
|
|
for h in ${headers}; do
|
|
install -m 0644 ${S}/$h ${STAGING_INCDIR}/$h
|
|
done
|
|
}
|