lfs-scripts/scripts/chapter8/8.59-groff.sh
2023-01-12 15:42:31 +05:30

24 lines
228 B
Bash

#!/bin/bash
cd /sources
tar xf groff-1.22.4.tar.gz
cd groff-1.22.4
PAGE=A4 ./configure --prefix=/usr
if [ $? -ne 0 ]
then
exit 1
fi
make -j1
if [ $? -ne 0 ]
then
exit 1
fi
make install
cd /sources
rm -rf groff-1.22.4