summaryrefslogtreecommitdiffstats
path: root/meta/recipes-support/boost/bjam-native_1.74.0.bb
blob: c0eeed60b0681e6f1af571d0993cabf970657dd0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
require boost-${PV}.inc

SUMMARY = "Portable Boost.Jam build tool for boost"
SECTION = "devel"

inherit native

do_compile() {
    ./bootstrap.sh --with-toolset=gcc
}

do_install() {
    install -d ${D}${bindir}/
    install b2 ${D}${bindir}/bjam
}

# The build is either release mode (pre-stripped) or debug (-O0).
INSANE_SKIP_${PN} = "already-stripped"