mirror of
https://git.adityakumar.xyz/lfs-scripts.git
synced 2024-11-14 17:09:45 +00:00
32 lines
330 B
Bash
32 lines
330 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
cd /sources
|
||
|
tar xf flex-2.6.4.tar.gz
|
||
|
flex-2.6.4
|
||
|
|
||
|
./configure --prefix=/usr \
|
||
|
--docdir=/usr/share/doc/flex-2.6.4 \
|
||
|
--disable-static
|
||
|
|
||
|
if [ $? -ne 0 ]
|
||
|
then
|
||
|
exit 1
|
||
|
fi
|
||
|
|
||
|
make -j5
|
||
|
|
||
|
if [ $? -ne 0 ]
|
||
|
then
|
||
|
exit 1
|
||
|
fi
|
||
|
|
||
|
make check
|
||
|
|
||
|
make install
|
||
|
|
||
|
ln -sv flex /usr/bin/lex
|
||
|
|
||
|
cd /sources
|
||
|
rm -rf flex-2.6.4
|
||
|
|