blob: e9ffa7d2b19b43426ff69b1330b3e298abc835cc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
PV = "0.0+cvs${SRCDATE}"
LICENSE = "MIT-X"
SECTION = "libs"
DEPENDS = "xextensions fixesext"
DESCRIPTION = "X Damage extension headers and specification"
PR = "r1"
SRC_URI = "${FREEDESKTOP_CVS}/xlibs;module=DamageExt"
S = "${WORKDIR}/DamageExt"
inherit autotools pkgconfig
do_stage() {
oe_runmake install prefix=${STAGING_DIR} \
bindir=${STAGING_BINDIR} \
includedir=${STAGING_INCDIR} \
libdir=${STAGING_LIBDIR} \
datadir=${STAGING_DATADIR}
}
|