mirror of
https://github.com/rkd77/elinks.git
synced 2024-11-04 08:17:17 -05:00
14 lines
201 B
Bash
14 lines
201 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
export PKG_CONFIG_PATH=/usr/local/lib/pkgconfig
|
||
|
|
||
|
./configure \
|
||
|
--host=i586-pc-msdosdjgpp \
|
||
|
--enable-static=yes \
|
||
|
--enable-shared=no \
|
||
|
--disable-documentation
|
||
|
|
||
|
make -j`nproc`
|
||
|
|
||
|
make install
|