mirror of
https://git.yoctoproject.org/poky
synced 2026-04-24 12:32:11 +02:00
git-svn-id: https://svn.o-hand.com/repos/poky/trunk@341 311d38ba-8fff-0310-9ca6-ca027cbcb966
20 lines
469 B
BlitzBasic
20 lines
469 B
BlitzBasic
SECTION = "x11/libs"
|
|
LICENSE = "X-BSD"
|
|
PRIORITY = "optional"
|
|
MAINTAINER = "Greg Gilbert <greg@treke.net>"
|
|
DEPENDS = "xproto libx11"
|
|
PROVIDES = "xpm"
|
|
DESCRIPTION = "X Pixmap library."
|
|
PR = "r1"
|
|
|
|
SRC_URI = "${XLIBS_MIRROR}/libXpm-${PV}.tar.bz2 \
|
|
file://autofoo.patch;patch=1"
|
|
S = "${WORKDIR}/libXpm-${PV}"
|
|
|
|
inherit autotools pkgconfig
|
|
|
|
do_stage () {
|
|
install -m 0644 ${S}/lib/xpm.h ${STAGING_INCDIR}/X11/xpm.h
|
|
oe_libinstall -a -so -C lib libXpm ${STAGING_LIBDIR}
|
|
}
|