mirror of
https://git.yoctoproject.org/poky
synced 2026-04-27 12:32:13 +02:00
(From OE-Core rev: 2a2238a04f79042a18f886dfbeb9d3af3fc8f12e) Signed-off-by: Alexander Kanavin <alex.kanavin@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
26 lines
575 B
BlitzBasic
26 lines
575 B
BlitzBasic
SUMMARY = "Boost.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 = "632ea768f3eb225b4472c5ed6d20afee708724ad"
|
|
|
|
UPSTREAM_CHECK_GITTAGREGEX = "(?P<pver>(\d+(\.\d+){2,}))"
|
|
|
|
inherit native
|
|
|
|
S = "${WORKDIR}/git"
|
|
|
|
do_compile() {
|
|
./bootstrap.sh
|
|
}
|
|
|
|
do_install() {
|
|
./b2 install --prefix=${prefix} staging-prefix=${D}${prefix}
|
|
}
|
|
|
|
# The build is either release mode (pre-stripped) or debug (-O0).
|
|
INSANE_SKIP_${PN} = "already-stripped"
|