128ad44455ce1d906de4089a09baa17c32d0adf6
[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         oe_runconf
13 }
14
15 do_stage() {
16         oe_libinstall -so libpth ${STAGING_LIBDIR}
17
18         install -d ${STAGING_INCDIR}/
19         for X in pth.h
20         do
21                 install -m 0644 ${S}/$X ${STAGING_INCDIR}/$X
22         done
23
24 }