aboutsummaryrefslogtreecommitdiffstats
path: root/libgpg-error/libgpg-error_0.7.oe
blob: 960e2ff3c9d3cc35d533c0579bf2211d89bf0206 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
DESCRIPTION = "GPG-Error library"
SECTION = "libs"
PRIORITY = "optional"
LICENSE = "GPL LGPL FDL"
RDEPENDS = "libc6"
DEPENDS = "virtual/libc"

SRC_URI = "ftp://ftp.gnupg.org/gcrypt/alpha/libgpg-error/libgpg-error-${PV}.tar.gz"

inherit autotools libtool

do_stage() {
	oe_soinstall src/.libs/libgpg-error.so.0.1.1 ${STAGING_LIBDIR}/
	install -m 0755 src/gpg-error-config ${STAGING_BINDIR}/
	install -m 0644 src/.libs/libgpg-error.lai ${STAGING_LIBDIR}/libgpg-error.la
	install -m 0644 src/.libs/libgpg-error.a ${STAGING_LIBDIR}/libgpg-error.a

	install -d ${STAGING_INCDIR}/
	for X in gpg-error.h
	do
		install -m 0644 ${S}/src/$X ${STAGING_INCDIR}/$X
	done

}