generic-poky/meta/packages/pth/pth_2.0.7.bb
Marcin Juszkiewicz b33f6c2843 pth: keep binconfig in -dev package
git-svn-id: https://svn.o-hand.com/repos/poky/trunk@4111 311d38ba-8fff-0310-9ca6-ca027cbcb966
2008-03-25 11:51:45 +00:00

33 lines
583 B
BlitzBasic

DESCRIPTION = "GNU Portable Threads"
SECTION = "libs"
PRIORITY = "optional"
LICENSE = "GPL LGPL FDL"
PR = "r1"
SRC_URI = "${GNU_MIRROR}/pth/pth-${PV}.tar.gz"
PARALLEL_MAKE=""
inherit autotools binconfig
do_configure() {
gnu-configize
oe_runconf
}
do_stage() {
oe_libinstall -so libpth ${STAGING_LIBDIR}
install -d ${STAGING_INCDIR}/
for X in pth.h
do
install -m 0644 ${S}/$X ${STAGING_INCDIR}/$X
done
install -d ${STAGING_DATADIR}/aclocal
install pth.m4 ${STAGING_DATADIR}/aclocal/
}
FILES_${PN} = "${libdir}/libpth.so.*"
FILES_${PN}-dev += "${bindir}/pth-config"