aboutsummaryrefslogtreecommitdiffstats
path: root/meta-openstack/recipes-devtools/python/python-pycrypto_2.6.bb
blob: 9972d2d4aa1b7f5d4bc75e55990fe80846668d6e (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
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
DESCRIPTION = "Cryptographic modules for Python."
HOMEPAGE = "http://www.pycrypto.org/"
SECTION = "devel/python"
LICENSE = "PSFv2"
LIC_FILES_CHKSUM = "file://COPYRIGHT;md5=35f354d199e8cb7667b059a23578e63d"

PR = "r0"
SRCNAME = "pycrypto"

SRC_URI = "https://pypi.python.org/packages/source/p/${SRCNAME}/${SRCNAME}-${PV}.tar.gz \
           file://cross-compiling.patch"

SRC_URI[md5sum] = "88dad0a270d1fe83a39e0467a66a22bb"
SRC_URI[sha256sum] = "7293c9d7e8af2e44a82f86eb9c3b058880f4bcc884bf3ad6c8a34b64986edde8"

S = "${WORKDIR}/${SRCNAME}-${PV}"

inherit distutils

export STAGING_INCDIR
export STAGING_LIBDIR
export BUILD_SYS
export HOST_SYS

CONFIGUREOPTS = "--build=${BUILD_SYS} \
                 --host=${HOST_SYS} \
                 --target=${TARGET_SYS} \
                 --prefix=${prefix} \
                 --exec_prefix=${exec_prefix} \
                 --bindir=${bindir} \
                 --sbindir=${sbindir} \
                 --libexecdir=${libexecdir} \
                 --datadir=${datadir} \
                 --sysconfdir=${sysconfdir} \
                 --sharedstatedir=${sharedstatedir} \
                 --localstatedir=${localstatedir} \
                 --libdir=${libdir} \
                 --includedir=${includedir} \
                 --oldincludedir=${oldincludedir} \
                 --infodir=${infodir} \
                 --mandir=${mandir} \
                 --disable-silent-rules \
                 --with-libtool-sysroot=${STAGING_DIR_HOST}"

do_configure () {
    # Workaround autoconf bug
    export ac_cv_func_malloc_0_nonnull=yes

    ./configure ${CONFIGUREOPTS}
}