mirror of
https://git.yoctoproject.org/poky
synced 2026-05-01 06:32:11 +02:00
23 lines
573 B
BlitzBasic
23 lines
573 B
BlitzBasic
PV = "0.0cvs${CVSDATE}"
|
|
LICENSE= "MIT"
|
|
PR = "r1"
|
|
SECTION = "x11/libs"
|
|
PRIORITY = "optional"
|
|
MAINTAINER = "Greg Gilbert <greg@treke.net>"
|
|
DEPENDS = "xproto"
|
|
DESCRIPTION = "Authorization Protocol for X."
|
|
|
|
SRC_URI = "cvs://anoncvs:anoncvs@pdx.freedesktop.org/cvs/xlibs;module=Xau"
|
|
S = "${WORKDIR}/Xau"
|
|
|
|
inherit autotools pkgconfig
|
|
|
|
do_stage() {
|
|
oe_runmake install prefix=${STAGING_DIR} \
|
|
bindir=${STAGING_BINDIR} \
|
|
includedir=${STAGING_INCDIR} \
|
|
libdir=${STAGING_LIBDIR} \
|
|
datadir=${STAGING_DATADIR} \
|
|
mandir=${STAGING_DATADIR}/man
|
|
}
|