mirror of
https://git.yoctoproject.org/poky
synced 2026-02-03 23:38:44 +01:00
28 lines
572 B
BlitzBasic
28 lines
572 B
BlitzBasic
DESCRIPTION = "libcurl Python Bindings"
|
|
SECTION = "devel/python"
|
|
PRIORITY = "optional"
|
|
LICENSE = "LGPL"
|
|
DEPENDS = "curl python"
|
|
SRCNAME = "pycurl"
|
|
PR = "r0"
|
|
|
|
SRC_URI = "\
|
|
http://${SRCNAME}.sourceforge.net/download/${SRCNAME}-${PV}.tar.gz;name=archive \
|
|
file://no-static-link.patch;patch=1 \
|
|
"
|
|
S = "${WORKDIR}/${SRCNAME}-${PV}"
|
|
|
|
inherit distutils
|
|
|
|
# need to export these variables for python-config to work
|
|
export BUILD_SYS
|
|
export HOST_SYS
|
|
export STAGING_INCDIR
|
|
export STAGING_LIBDIR
|
|
|
|
NATIVE_INSTALL_WORKS = "1"
|
|
|
|
RDEPENDS = "python-core curl"
|
|
|
|
BBCLASSEXTEND = "native"
|