1
0
mirror of git://git.2f30.org/morpheus.git synced 2024-06-24 12:58:34 +00:00
morpheus/pkgs/ncurses
2014-02-26 09:38:47 +00:00

33 lines
700 B
Plaintext

url=$mirror/ncurses.tar.gz
fetch() {
wget -c $url -O src/ncurses.tar.gz
}
unpack() {
cd src
[ -d ncurses-5.9 ] || tar xzf ncurses.tar.gz
cd -
}
build() {
cd src/ncurses-5.9
cp $top/stuff/ncurses-fallback.c ncurses/fallback.c
CC="x86_64-linux-musl-gcc -static" ./configure --prefix="$libcroot" --without-tests \
--with-normal --enable-sigwinch --disable-nls --without-dlsym \
--without-cxx-binding --enable-widec \
--with-fallbacks="linux vt100 xterm xterm256-color" </dev/ptmx || return 1
make -j$nprocs || return 1
cd -
}
install() {
cd src/ncurses-5.9
make install || return 1
cd -
cd $root/lib
ln -s libncursesw_g.a libncurses_g.a
ln -s libncursesw.a libncurses.a
cd -
}