1
0
mirror of git://git.2f30.org/morpheus.git synced 2024-06-28 22:01:21 +00:00
morpheus/cross-scripts/ncurses

29 lines
590 B
Plaintext

url=$mirror/ncurses.tar.gz
fetch() {
wget -c $url -O src/ncurses.tar.gz
}
unpack() {
pushd src
[ -d ncurses-5.9 ] || tar xzf ncurses.tar.gz
popd
}
build() {
pushd src/ncurses-5.9
cp $top/stuff/ncurses-fallback.c ncurses/fallback.c
CC=musl-gcc ./configure --prefix=$top/cross --without-tests \
--with-normal --enable-sigwinch --disable-nls --without-dlsym \
--without-cxx-binding \
--with-fallbacks="linux vt100 xterm xterm256-color" </dev/ptmx || return 1
make CC=musl-gcc -j$nprocs || return 1
popd
}
install() {
pushd src/ncurses-5.9
make install || return 1
popd
}