mirror of
git://git.openembedded.org/meta-openembedded
synced 2026-01-01 13:58:06 +00:00
This patch updates SRC_URIs using git to include branch=master if no branch is set and also to use protocol=https for github urls as generated by the conversion script in OE-Core. Signed-off-by: Armin Kuster <akuster808@gmail.com>
22 lines
593 B
BlitzBasic
22 lines
593 B
BlitzBasic
SUMMARY = "Convex optimization package"
|
|
HOMEPAGE = "http://cvxopt.org"
|
|
LICENSE = "GPL-3.0"
|
|
LIC_FILES_CHKSUM = "file://LICENSE;md5=ba1a8a73d8ebea5c47a1173aaf476ddd"
|
|
|
|
SRC_URI = "git://github.com/cvxopt/cvxopt;protocol=https;branch=master"
|
|
|
|
SRCREV = "60fdb838e0bb2d8f32ba51129552c83b55acd2a7"
|
|
|
|
S = "${WORKDIR}/git"
|
|
|
|
RDEPENDS_${PN} += "lapack suitesparse"
|
|
DEPENDS += "lapack suitesparse"
|
|
|
|
inherit setuptools3
|
|
|
|
export CVXOPT_BLAS_LIB_DIR = "${STAGING_LIBDIR}"
|
|
export CVXOPT_SUITESPARSE_LIB_DIR = "${STAGING_LIBDIR}"
|
|
export CVXOPT_SUITESPARSE_INC_DIR = "${STAGING_INCDIR}"
|
|
|
|
EXCLUDE_FROM_WORLD = "1"
|