mirror of
https://git.yoctoproject.org/poky
synced 2026-04-26 09:32:14 +02:00
Add branch name explicitly to SRC_URI where it's not defined and switch to using https protocol for Github projects. The change was made using convert-srcuri script in scripts/contrib. (From OE-Core rev: ab781d4e3fa7425d96ea770ddfd0f01f62018c5b) Signed-off-by: Anuj Mittal <anuj.mittal@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
28 lines
718 B
BlitzBasic
28 lines
718 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;branch=master"
|
|
SRCREV = "632ea768f3eb225b4472c5ed6d20afee708724ad"
|
|
|
|
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"
|