eth0s/toolchain/12-ncurses
2020-06-12 16:42:33 +08:00

19 lines
350 B
Text
Executable file

name=ncurses
version=6.2
source=(http://ftp.gnu.org/gnu/ncurses/ncurses-$version.tar.gz)
build() {
cd $name-$version
sed -i s/mawk// configure
./configure --prefix=/tools \
--with-shared \
--without-debug \
--without-ada \
--enable-widec \
--enable-overwrite
make
make install
ln -s libncursesw.so /tools/lib/libncurses.so
}