#!/bin/sh . ./.vars VERSION=1.28.3 BUILD_DIR="$build_dir/busybox-$VERSION" cd $build_dir if ! [ -d "$BUILD_DIR" ] ; then bunzip2 -dc < $dist_dir/busybox-$VERSION.tar.bz2 | tar -xvf - fi cd $BUILD_DIR if ! [ -e ./.config ] ; then cp "${base_dir}/busybox-config" ./.config fi make -j$(nproc) make install