Merge openembedded@openembedded.bkbits.net:packages
[vuplus_openembedded] / pth / pth_2.0.0.oe
1 DESCRIPTION = "GNU Portable Threads"
2 SECTION = "libs"
3 PRIORITY = "optional"
4 LICENSE = "GPL LGPL FDL"
5 DEPENDS = "virtual/libc"
6
7 SRC_URI = "ftp://ftp.ossp.org/pkg/lib/pth/pth-${PV}.tar.gz"
8
9 inherit autotools 
10
11 do_configure() {
12         gnu-configize
13         oe_runconf
14 }
15
16 do_stage() {
17         oe_libinstall -so libpth ${STAGING_LIBDIR}
18
19         install -d ${STAGING_INCDIR}/
20         for X in pth.h
21         do
22                 install -m 0644 ${S}/$X ${STAGING_INCDIR}/$X
23         done
24
25 }