increase dvbapp PR
[vuplus_openembedded] / recipes / libgcrypt / libgcrypt.inc
1 DESCRIPTION = "A general purpose cryptographic library based on the code from GnuPG"
2 SECTION = "libs"
3 PRIORITY = "optional"
4 LICENSE = "GPL LGPL FDL"
5 DEPENDS = "libgpg-error"
6
7 SRC_URI = "ftp://ftp.gnupg.org/gcrypt/libgcrypt/libgcrypt-${PV}.tar.gz \
8            file://add-pkgconfig-support.patch;patch=1 \
9            file://mips-h-constraint.patch;patch=1"
10
11 inherit autotools binconfig pkgconfig lib_package
12
13 EXTRA_OECONF = "--without-pth --disable-asm --with-capabilities"
14
15 ARM_INSTRUCTION_SET = "arm"
16
17 do_install_append() {
18         install -d ${D}/${libdir}/pkgconfig/
19         cp ${S}/src/*.pc ${D}/${libdir}/pkgconfig/
20 }
21
22 do_stage() {
23         autotools_stage_all
24 }
25