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 libtool
10
11 do_configure() {
12         oe_runconf
13 }
14
15 do_stage() {
16         oe_soinstall .libs/libpth.so.20.0.20 ${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 }