eth0s/toolchain/09-ncurses

21 lines
354 B
Text
Raw Permalink Normal View History

name=ncurses
2022-04-09 08:19:46 +08:00
version=6.3
2021-04-18 08:19:42 +08:00
source="http://ftp.gnu.org/gnu/ncurses/ncurses-$version.tar.gz"
2018-12-01 00:12:45 +08:00
build() {
cd $name-$version
2018-12-01 00:12:45 +08:00
sed -i s/mawk// configure
2020-07-02 23:33:24 +08:00
./configure \
--prefix=/tools \
--with-shared \
--without-debug \
--without-ada \
--enable-widec \
--enable-overwrite
2018-12-01 00:12:45 +08:00
make
make install
ln -s libncursesw.so /tools/lib/libncurses.so
}