xref: /OK3568_Linux_fs/yocto/poky/meta/recipes-support/boost/boost-1.78.0.inc (revision 4882a59341e53eb6f0b4789bf948001014eff981)
1*4882a593Smuzhiyun# The Boost web site provides free peer-reviewed portable
2*4882a593Smuzhiyun# C++ source libraries. The emphasis is on libraries which
3*4882a593Smuzhiyun# work well with the C++ Standard Library. The libraries are
4*4882a593Smuzhiyun# intended to be widely useful, and are in regular use by
5*4882a593Smuzhiyun# thousands of programmers across a broad spectrum of applications.
6*4882a593SmuzhiyunHOMEPAGE = "http://www.boost.org/"
7*4882a593SmuzhiyunLICENSE = "BSL-1.0 & MIT & Python-2.0"
8*4882a593SmuzhiyunLIC_FILES_CHKSUM = "file://LICENSE_1_0.txt;md5=e4224ccaecb14d942c71d31bef20d78c"
9*4882a593Smuzhiyun
10*4882a593SmuzhiyunBOOST_VER = "${@"_".join(d.getVar("PV").split("."))}"
11*4882a593SmuzhiyunBOOST_MAJ = "${@"_".join(d.getVar("PV").split(".")[0:2])}"
12*4882a593SmuzhiyunBOOST_P = "boost_${BOOST_VER}"
13*4882a593Smuzhiyun
14*4882a593SmuzhiyunSRC_URI = "https://boostorg.jfrog.io/artifactory/main/release/${PV}/source/${BOOST_P}.tar.bz2"
15*4882a593SmuzhiyunSRC_URI[sha256sum] = "8681f175d4bdb26c52222665793eef08490d7758529330f98d3b29dd0735bccc"
16*4882a593Smuzhiyun
17*4882a593SmuzhiyunUPSTREAM_CHECK_URI = "http://www.boost.org/users/download/"
18*4882a593SmuzhiyunUPSTREAM_CHECK_REGEX = "release/(?P<pver>.*)/source/"
19*4882a593Smuzhiyun
20*4882a593SmuzhiyunS = "${WORKDIR}/${BOOST_P}"
21