diff --git a/scripts/chapter8/8.29-sed.sh b/scripts/chapter8/8.29-sed.sh new file mode 100644 index 0000000..e396f81 --- /dev/null +++ b/scripts/chapter8/8.29-sed.sh @@ -0,0 +1,31 @@ +#!/bin/bash + +cd /sources +tar xf sed-4.8.tar.xz +cd sed-4.8 + +./configure --prefix=/usr + +if [ $? -ne 0 ] +then + exit 1 +fi + +make + +if [ $? -ne 0 ] +then + exit 1 +fi + +make html + +chown -Rv tester . +su tester -c "PATH=$PATH make check" + +make install +install -d -m755 /usr/share/doc/sed-4.8 +install -m644 doc/sed.html /usr/share/doc/sed-4.8 + +cd /sources +rm -rf sed-4.8 diff --git a/scripts/main.sh b/scripts/main.sh index 0ba54fd..a0122e0 100644 --- a/scripts/main.sh +++ b/scripts/main.sh @@ -881,3 +881,16 @@ then stop_script "chapter8/8.28-ncurses.sh" fi + +# Chapter 8.29 +# ============ +echo "Building sed" +su -c "bash $SCRIPT/chapter8/8.29-sed.sh" + +# Exit on error +check_exit_code +if [ $exit_status -ne 0 ] +then + stop_script "chapter8/8.29-sed.sh" +fi +