mirror of
https://github.com/yoppeh/minl.git
synced 2026-01-14 03:15:17 +00:00
28 lines
386 B
Bash
Executable File
28 lines
386 B
Bash
Executable File
#!/bin/bash
|
|
|
|
export STAGE=2
|
|
|
|
. ./environment.sh
|
|
. ./package-versions.sh
|
|
|
|
export FORCE_UNSAFE_CONFIGURE=1
|
|
|
|
if [ -f $PROGRESS_DIR/2-diffutils ] ; then
|
|
exit 0
|
|
fi
|
|
|
|
echo "building diffutils..."
|
|
|
|
set -e
|
|
|
|
tar xf diffutils-${diffutils_v}.tar.xz
|
|
cd diffutils-${diffutils_v}
|
|
|
|
./configure --prefix=/usr
|
|
make
|
|
make install
|
|
|
|
cd ..
|
|
rm -rf diffutils-${diffutils_v}
|
|
touch $PROGRESS_DIR/2-diffutils
|