mirror of
https://git.adityakumar.xyz/lfs-scripts.git
synced 2024-11-13 00:39:46 +00:00
26 lines
284 B
Bash
26 lines
284 B
Bash
#!/bin/bash
|
|
|
|
cd /sources
|
|
tar xf check-0.15.2.tar.gz
|
|
cd check-0.15.2
|
|
|
|
./configure --prefix=/usr --disable-static
|
|
|
|
if [ $? -ne 0 ]
|
|
then
|
|
exit 1
|
|
fi
|
|
|
|
make -j5
|
|
|
|
if [ $? -ne 0 ]
|
|
then
|
|
exit 1
|
|
fi
|
|
|
|
make check
|
|
|
|
make docdir=/usr/share/doc/check-0.15.2 install
|
|
|
|
cd /sources
|
|
rm -rf check-0.15.2
|