1.8. tmp bash-5.1

#!/bin/sh
# Copyright © 1999-2022 Gerard Beekmans
# Copyright © 2017-2022 Random Crew
# Distributed under the terms of MIT License.

Configuration

src_config()
{
    ./configure \
        --prefix=${PREFIX} \
        --build=$(support/config.guess) \
        --host=$LFS_TGT      \
        --without-bash-malloc
}

Compilation

src_compile()
{
    make ${MAKEOPTS}
}

Installation

src_install()
{
    make install ${MAKEOPTS} DESTDIR=${D}

    mkdir -p ${D}/bin/
    mv ${D}${PREFIX}/bin/bash ${D}/bin/bash
    ln -s bash ${D}/bin/sh
}

Unit testing

Unit testing is not used during this stage.

src_check()
{
    chown -R tester .
    su -s ${PREFIX}/bin/expect tester << EOF
set timeout -1
spawn make tests
expect eof
lassign [wait] _ _ _ value
exit $value
EOF
}

Links

url.lfs: https://linuxfromscratch.org/lfs/view/10.1/chapter08/bash.html
url.lfs.stage1: https://linuxfromscratch.org/lfs/view/10.1/chapter06/bash.html