mirror of
https://git.yoctoproject.org/poky
synced 2026-03-05 23:09:39 +01:00
git-svn-id: https://svn.o-hand.com/repos/poky/trunk@2556 311d38ba-8fff-0310-9ca6-ca027cbcb966
23 lines
524 B
BlitzBasic
23 lines
524 B
BlitzBasic
DESCRIPTION = "Common code for XSETTINGS"
|
|
SECTION = "x/libs"
|
|
LICENSE = "BSD-X"
|
|
PRIORITY = "optional"
|
|
DEPENDS = "virtual/libx11"
|
|
|
|
PR = "r1"
|
|
|
|
headers = "xsettings-common.h xsettings-client.h"
|
|
|
|
SRC_URI = "http://projects.o-hand.com/matchbox/sources/optional-dependencies/Xsettings-client-0.10.tar.gz"
|
|
S = "${WORKDIR}/Xsettings-client-0.10"
|
|
|
|
inherit autotools gettext
|
|
|
|
do_stage () {
|
|
oe_libinstall -so libXsettings-client ${STAGING_LIBDIR}
|
|
|
|
for h in ${headers}; do
|
|
install -m 0644 ${S}/$h ${STAGING_INCDIR}/$h
|
|
done
|
|
}
|