mirror of
https://git.adityakumar.xyz/lfs-scripts.git
synced 2024-11-13 00:39:46 +00:00
24 lines
228 B
Bash
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
|