blob: d843eb038cb503c29686dc2456899f1de88ac4c3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
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
}
|