mirror of
https://github.com/rkd77/elinks.git
synced 2024-11-03 08:07:17 -05:00
16 lines
269 B
Bash
Executable File
16 lines
269 B
Bash
Executable File
#!/bin/bash
|
|
|
|
export PKG_CONFIG_PATH=/usr/local/lib/pkgconfig
|
|
|
|
NOCONFIGURE=1 ./autogen.sh
|
|
|
|
CPPFLAGS="-I/usr/local/include/libxml2" ./configure \
|
|
--host=i586-pc-msdosdjgpp \
|
|
--enable-static=yes \
|
|
--enable-shared=no \
|
|
--disable-documentation
|
|
|
|
make -j`nproc`
|
|
|
|
make install
|