before index-conflict changes

This commit is contained in:
2025-11-18 19:46:36 +03:00
parent 28ba2135ec
commit 30540602bd
66 changed files with 1403 additions and 879 deletions

View File

@ -3,7 +3,30 @@ ncurses 6.5
https://ftp.gnu.org/gnu/ncurses/ncurses-6.5.tar.gz
``` sh *** build ***
CFG_FLAGS="--prefix=/pkg/gnu/ncurses --without-debug --enable-pc-files --with-pkg-config-libdir=/pkg/gnu/ncurses/lib/pkgconfig"
./configure $CFG_FLAGS && make -j$(nproc) && make install && make distclean &&
./configure $CFG_FLAGS --disable-widec && make -j$(nproc) && make install
./configure \
--prefix=/pkg/gnu/ncurses \
--without-cxx-binding \
--without-debug \
--with-termlib \
--with-shared \
--enable-pc-files \
--with-pkg-config-libdir=/pkg/gnu/ncurses/lib/pkgconfig &&
make -j$(nproc) && make install && make clean &&
./configure \
--prefix=/pkg/gnu/ncurses \
--without-cxx-binding \
--without-debug \
--without-normal \
--with-termlib \
--with-shared \
--enable-pc-files \
--with-pkg-config-libdir=/pkg/gnu/ncurses/lib/pkgconfig \
--disable-widec &&
make -j$(nproc) && make install
```
``` cfg *** build deps ***
pkg-config
```
--enable-getcap \