37 lines
714 B
Markdown
37 lines
714 B
Markdown
ncurses 6.5
|
|
=
|
|
https://ftp.gnu.org/gnu/ncurses/ncurses-6.5.tar.gz
|
|
|
|
``` sh *** build ***
|
|
./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 \
|