lfs-scripts/scripts/chapter8/8.72-procps-ng.sh

30 lines
406 B
Bash
Raw Normal View History

2023-01-12 14:22:13 +00:00
#!/bin/bash
cd /sources
tar xf procps-ng-4.0.0.tar.xz
cd procps-ng-4.0.0
./configure --prefix=/usr \
--docdir=/usr/share/doc/procps-ng-4.0.0 \
--disable-static \
--disable-kill
if [ $? -ne 0 ]
then
exit 1
fi
make -j5
if [ $? -ne 0 ]
then
exit 1
fi
make check
make install
cd /sources
rm -rf procps-ng-4.0.0