mirror of
https://git.yoctoproject.org/poky
synced 2026-02-26 11:29:40 +01:00
21 lines
473 B
BlitzBasic
21 lines
473 B
BlitzBasic
DESCRIPTION = "X Input Extension library"
|
|
LICENSE = "MIT-X"
|
|
SECTION = "x11/libs"
|
|
DEPENDS = "xproto x11 xextensions"
|
|
PR = "r1"
|
|
|
|
SRC_URI = "${XLIBS_MIRROR}/libXi-${PV}.tar.bz2 \
|
|
file://autofoo.patch;patch=1"
|
|
S = "${WORKDIR}/libXi-${PV}"
|
|
|
|
inherit autotools pkgconfig
|
|
|
|
do_stage() {
|
|
oe_runmake install prefix=${STAGING_DIR} \
|
|
bindir=${STAGING_BINDIR} \
|
|
includedir=${STAGING_INCDIR} \
|
|
libdir=${STAGING_LIBDIR} \
|
|
datadir=${STAGING_DATADIR}
|
|
}
|
|
|