lfs-buildscripts/CH8Build/CH08.37-gperf.sh

42 lines
673 B
Bash
Raw Normal View History

2024-10-05 17:08:41 +08:00
#!/bin/bash
source versions.sh
GLSOURCES="/sources"
2024-10-09 09:50:04 +08:00
pushd ${GLSOURCES} > /dev/null 2>&1 || myfail "Failed to move to ${GLSOURCES}"
2024-10-05 17:08:41 +08:00
[ -d gperf-${gperf_version} ] && rm -rf gperf-${gperf_version}
tar -zxf ${gperf_tarball}
cd gperf-${gperf_version}
./configure --prefix=/usr \
--docdir=/usr/share/doc/gperf-${gperf_version}
make
if [ $? -ne 0 ]; then
myfail "Failed building gperf"
fi
2024-10-09 09:50:04 +08:00
if [ ! -f ${GLSOURCES}/SKIPTESTS ]; then
echo "running gperf make check"
make -j1 check > ${GLSOURCES}/gperf.check.log 2>&1
fi
2024-10-05 17:08:41 +08:00
make install
if [ $? -ne 0 ]; then
myfail "Failed installing gperf"
fi
2024-10-08 14:25:15 +08:00
popd
# cleanup
pushd $GLSOURCES
rm -rf gperf-${gperf_version}
popd