forked from alnux/repo
18 lines
522 B
Text
Executable file
18 lines
522 B
Text
Executable file
if [ ! -f $1/etc/hosts ]; then
|
|
echo "127.0.0.1 localhost $(hostname)" > $1/etc/hosts
|
|
else
|
|
#do nothing
|
|
fi
|
|
|
|
export BUILD_ZLIB=False
|
|
export BUILD_BZIP2=0
|
|
|
|
sh Configure -des -Dprefix=/usr \
|
|
-Dvendorprefix=/usr \
|
|
-Dman1dir=/usr/share/man/man1 \
|
|
-Dman3dir=/usr/share/man/man3 \
|
|
-Dpager="/usr/bin/less -isR" \
|
|
-Duseshrplib \
|
|
-Dusethreads
|
|
make
|
|
make DESTDIR="$1" install
|