Another pass of .oe cleanups.
[vuplus_openembedded] / libgpg-error / libgpg-error_0.7.oe
1 DESCRIPTION = "GPG-Error library"
2 SECTION = "libs"
3 PRIORITY = "optional"
4 LICENSE = "GPL LGPL FDL"
5 RDEPENDS = "libc6"
6 DEPENDS = "virtual/libc"
7
8 SRC_URI = "ftp://ftp.gnupg.org/gcrypt/alpha/libgpg-error/libgpg-error-${PV}.tar.gz"
9
10 inherit autotools libtool
11
12 do_stage() {
13         oe_soinstall src/.libs/libgpg-error.so.0.1.1 ${STAGING_LIBDIR}/
14         install -m 0755 src/gpg-error-config ${STAGING_BINDIR}/
15         install -m 0644 src/.libs/libgpg-error.lai ${STAGING_LIBDIR}/libgpg-error.la
16         install -m 0644 src/.libs/libgpg-error.a ${STAGING_LIBDIR}/libgpg-error.a
17
18         install -d ${STAGING_INCDIR}/
19         for X in gpg-error.h
20         do
21                 install -m 0644 ${S}/src/$X ${STAGING_INCDIR}/$X
22         done
23
24 }