mirror of
https://git.yoctoproject.org/poky
synced 2026-05-04 22:39:49 +02:00
This is the result of automated script conversion: scripts/contrib/convert-overrides.py <oe-core directory> converting the metadata to use ":" as the override character instead of "_". (From OE-Core rev: 42344347be29f0997cc2f7636d9603b1fe1875ae) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
28 lines
704 B
BlitzBasic
28 lines
704 B
BlitzBasic
SUMMARY = "Boost.Build"
|
|
DESCRIPTION = "B2 makes it easy to build C++ projects, everywhere."
|
|
HOMEPAGE = "https://github.com/boostorg/build"
|
|
SECTION = "devel"
|
|
|
|
LICENSE = "BSL-1.0"
|
|
LIC_FILES_CHKSUM = "file://LICENSE.txt;md5=e4224ccaecb14d942c71d31bef20d78c"
|
|
|
|
SRC_URI = "git://github.com/boostorg/build;protocol=https"
|
|
SRCREV = "76da80f33187a3d9e5336157cdfae12ce82e37eb"
|
|
|
|
UPSTREAM_CHECK_GITTAGREGEX = "(?P<pver>(\d+(\.\d+){2,}))"
|
|
|
|
inherit native
|
|
|
|
S = "${WORKDIR}/git"
|
|
|
|
do_compile() {
|
|
./bootstrap.sh
|
|
}
|
|
|
|
do_install() {
|
|
HOME=/var/run ./b2 install --prefix=${prefix} staging-prefix=${D}${prefix}
|
|
}
|
|
|
|
# The build is either release mode (pre-stripped) or debug (-O0).
|
|
INSANE_SKIP:${PN} = "already-stripped"
|