mirror of
https://git.yoctoproject.org/poky
synced 2026-04-26 00:32:12 +02:00
(From OE-Core rev: 773a22ea3996cab70ccc0e44db1d2fbd1be11a60) Signed-off-by: Alexander Kanavin <alex.kanavin@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
21 lines
449 B
BlitzBasic
21 lines
449 B
BlitzBasic
require boost-${PV}.inc
|
|
|
|
SUMMARY = "Portable Boost.Jam build tool for boost"
|
|
SECTION = "devel"
|
|
|
|
inherit native
|
|
|
|
SRC_URI += "file://0001-Build-debug-version-of-bjam.patch \
|
|
file://0001-build.sh-use-DNDEBUG-also-in-debug-builds.patch \
|
|
"
|
|
|
|
do_compile() {
|
|
./bootstrap.sh --with-toolset=gcc
|
|
}
|
|
|
|
do_install() {
|
|
install -d ${D}${bindir}/
|
|
# install unstripped version for bjam
|
|
install -c -m 755 b2 ${D}${bindir}/bjam
|
|
}
|