1
0
mirror of git://git.2f30.org/morpheus.git synced 2024-06-25 06:38:33 +00:00
morpheus/cross-scripts/ncurses

29 lines
600 B
Plaintext
Raw Normal View History

2013-09-07 14:32:03 +00:00
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
2013-09-19 13:25:40 +00:00
cp $top/stuff/ncurses-fallback.c ncurses/fallback.c
2013-09-25 17:51:30 +00:00
CC="x86_64-linux-musl-gcc -static" ./configure --prefix=$libcroot --without-tests \
2013-09-17 10:37:13 +00:00
--with-normal --enable-sigwinch --disable-nls --without-dlsym \
--without-cxx-binding \
--with-fallbacks="linux vt100 xterm xterm256-color" </dev/ptmx || return 1
make -j$nprocs || return 1
2013-09-07 14:32:03 +00:00
popd
}
install() {
pushd src/ncurses-5.9
2013-09-17 14:40:13 +00:00
make install || return 1
2013-09-07 14:32:03 +00:00
popd
}