mirror of
https://git.adityakumar.xyz/lfs-scripts.git
synced 2024-11-14 17:09:45 +00:00
27 lines
284 B
Bash
27 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
|