From e9e05b23247288e4194601775cb5aa02a4e4d5fc Mon Sep 17 00:00:00 2001 From: Aditya Date: Mon, 9 Jan 2023 11:44:30 +0530 Subject: [PATCH] Add 6.7 - Build file --- scripts/chapter6/6.7-file.sh | 48 ++++++++++++++++++++++++++++++++++++ scripts/main.sh | 13 ++++++++++ 2 files changed, 61 insertions(+) create mode 100644 scripts/chapter6/6.7-file.sh diff --git a/scripts/chapter6/6.7-file.sh b/scripts/chapter6/6.7-file.sh new file mode 100644 index 0000000..4941093 --- /dev/null +++ b/scripts/chapter6/6.7-file.sh @@ -0,0 +1,48 @@ +#!/bin/bash + +cd $LFS/sources +tar xf file-5.42.tar.gz +cd file-5.42 + +mkdir build +pushd build + ../configure --disable-bzlib \ + --disable-libseccomp \ + --disable-xzlib \ + --disable-zlib + + if [ $? -ne 0 ] + then + exit 1 + fi + + make + + if [ $? -ne 0 ] + then + exit 1 + fi + +popd + +./configure --prefix=/usr --host=$LFS_TGT --build=$(./config.guess) + +if [ $? -ne 0 ] +then + exit 1 +fi + +make FILE_COMPILE=$(pwd)/build/src/file + +if [ $? -ne 0 ] +then + exit 1 +fi + +make DESTDIR=$LFS install + +rm -v $LFS/usr/lib/libmagic.la + +cd $LFS/sources +rm -rf file-5.42 + diff --git a/scripts/main.sh b/scripts/main.sh index 781b256..465db07 100644 --- a/scripts/main.sh +++ b/scripts/main.sh @@ -238,6 +238,7 @@ if [ $exit_status -ne 0 ] then stop_script "chapter6/6.5-ncurses.sh" fi + # Chapter 6.6 # =========== echo "Building diffutils" @@ -250,3 +251,15 @@ then stop_script "chapter6/6.6-diffutils.sh" fi +# Chapter 6.7 +# =========== +echo "Building file" +su - lfs -c "bash $PWD/chapter6/6.7-file.sh" + +# Exit on error +check_exit_code +if [ $exit_status -ne 0 ] +then + stop_script "chapter6/6.7-file.sh" +fi +