1
0
mirror of https://github.com/rkd77/elinks.git synced 2024-07-01 02:05:33 +00:00
elinks/docker/djgpp/build_curl.sh
2023-11-15 18:05:20 +01:00

10 lines
448 B
Bash

cd
wget https://curl.se/download/curl-8.4.0.tar.xz
rm -rf curl-8.4.0
tar -xf curl-8.4.0.tar.xz
cd curl-8.4.0
PKG_CONFIG_PATH="$HOME/lib/pkgconfig" CPPFLAGS="-I$HOME/include" LIBS="-L$HOME/lib -liconv -L$HOME/lib -lbrotlicommon -L$HOME/lib -lunistring -L$HOME/lib -liconv" \
./configure --host=i586-pc-msdosdjgpp --with-ssl --with-zlib --with-brotli --with-libidn2 --disable-threaded-resolver --with-srp --prefix=$HOME
make -j $(nproc)
make install