Merge branch 'master' of git://dev.doredevelopment.dk/oe-micro into org.openembedded.dev
[openembedded.git] / recipes / libxsettings-client / libxsettings-client.inc
1 SECTION = "gpe/libs"
2 LICENSE = "BSD-X"
3 PRIORITY = "optional"
4 DEPENDS = "libxsettings virtual/libx11 libxt"
5 # libxt is required to stop configure breaking builds by
6 # including system paths to find it if it isn't present.
7
8 GPE_TARBALL_SUFFIX = "bz2"
9 inherit autotools pkgconfig gpe
10
11 SRC_URI = "${GPE_MIRROR}/libxsettings-client-${PV}.tar.bz2 \
12 "
13
14 headers = "xsettings-client.h xsettings-common.h"
15 do_stage () {
16         oe_libinstall -so libXsettings-client ${STAGING_LIBDIR}
17         mkdir -p ${STAGING_INCDIR}
18         for h in ${headers}; do
19                install -m 0644 ${S}/$h ${STAGING_INCDIR}/$h
20         done
21 }
22