mirror of
https://github.com/krglaws/MyLFS.git
synced 2025-07-26 15:46:59 +00:00
working on massive rewrite
This commit is contained in:
29
phase4/automake.sh
Normal file
29
phase4/automake.sh
Normal file
@ -0,0 +1,29 @@
|
||||
#!/usr/bin/env bash
|
||||
# Automake Stage 6
|
||||
# ~~~~~~~~~~~~~~~~
|
||||
set -e
|
||||
|
||||
cd /sources
|
||||
|
||||
eval "$(grep AUTOMAKE $PACKAGE_LIST)"
|
||||
PKG_AUTOMAKE=$(basename $PKG_AUTOMAKE)
|
||||
|
||||
tar -xf $PKG_AUTOMAKE
|
||||
cd ${PKG_AUTOMAKE%.tar*}
|
||||
|
||||
./configure --prefix=/usr --docdir=/usr/share/doc/automake-1.16.5
|
||||
|
||||
make
|
||||
|
||||
if $RUN_TESTS
|
||||
then
|
||||
set +e
|
||||
make -j4 check &> TESTLOG_DIR/automake.log
|
||||
set -e
|
||||
fi
|
||||
|
||||
make install
|
||||
|
||||
cd /sources
|
||||
rm -rf ${PKG_AUTOMAKE%.tar*}
|
||||
|
Reference in New Issue
Block a user