mirror of
https://github.com/rkd77/elinks.git
synced 2024-11-04 08:17:17 -05:00
61 lines
1003 B
Bash
Executable File
61 lines
1003 B
Bash
Executable File
#!/bin/sh
|
|
|
|
rm -rf /root/tmp/builddir
|
|
|
|
CFLAGS="-O2 -static -no-pie" \
|
|
CXXFLAGS="-O2 -static -no-pie" \
|
|
meson /root/tmp/builddir \
|
|
-D88-colors=true \
|
|
-D256-colors=true \
|
|
-Dbacktrace=false \
|
|
-Dbittorrent=true \
|
|
-Dbrotli=true \
|
|
-Dbzlib=true \
|
|
-Dcgi=true \
|
|
-Dcss=true \
|
|
-Dcombining=false \
|
|
-Ddgi=true \
|
|
-Dexmode=true \
|
|
-Dfastmem=true \
|
|
-Dfsp=false \
|
|
-Dgemini=true \
|
|
-Dgettext=false \
|
|
-Dgnutls=false \
|
|
-Dgopher=true \
|
|
-Dgpm=false \
|
|
-Dguile=false \
|
|
-Didn=true \
|
|
-Dipv6=true \
|
|
-Dlibev=false \
|
|
-Dlibevent=true \
|
|
-Dluapkg='luajit' \
|
|
-Dlzma=true \
|
|
-Dmailcap=true \
|
|
-Dmouse=true \
|
|
-Dnls=true \
|
|
-Dnntp=true \
|
|
-Dopenssl=true \
|
|
-Dperl=false \
|
|
-Dpython=false \
|
|
-Dquickjs=false \
|
|
-Druby=false \
|
|
-Dsm-scripting=false \
|
|
-Dspidermonkey=false \
|
|
-Dstatic=true \
|
|
-Dterminfo=false \
|
|
-Dtest=false \
|
|
-Dtre=true \
|
|
-Dtrue-color=true \
|
|
-Dutf-8=true \
|
|
-Dwithdebug=false \
|
|
-Dx=false \
|
|
-Dxbel=true \
|
|
-Dzlib=true \
|
|
-Dzstd=true
|
|
|
|
meson compile -C /root/tmp/builddir
|
|
|
|
strip /root/tmp/builddir/src/elinks
|
|
|
|
upx /root/tmp/builddir/src/elinks
|