2012-11-21 11:12:43 -06:00
|
|
|
# Description: A System V Release 4.0 curses emulation library
|
|
|
|
# URL: http://www.gnu.org/software/ncurses/ncurses.html
|
2013-02-02 01:54:23 +11:00
|
|
|
# Maintainer: CRUX compat-32 Team, compat-32-ports at crux dot nu
|
2012-11-21 11:12:43 -06:00
|
|
|
|
|
|
|
name=ncurses-32
|
2020-02-23 17:17:25 +11:00
|
|
|
version=6.2
|
2012-11-21 11:12:43 -06:00
|
|
|
release=1
|
2018-01-31 12:30:41 +11:00
|
|
|
source=(https://ftp.gnu.org/gnu/ncurses/ncurses-$version.tar.gz)
|
2012-11-21 11:12:43 -06:00
|
|
|
|
|
|
|
build() {
|
|
|
|
cd ncurses-$version
|
|
|
|
|
2015-11-19 01:14:40 +11:00
|
|
|
./configure \
|
|
|
|
--prefix=/usr \
|
|
|
|
--libdir=/usr/lib32 \
|
|
|
|
--with-normal \
|
|
|
|
--with-shared \
|
|
|
|
--without-debug \
|
|
|
|
--without-ada \
|
|
|
|
--without-tests \
|
|
|
|
--enable-pc-files \
|
|
|
|
--with-pkg-config-libdir=/usr/lib32/pkgconfig \
|
|
|
|
--without-gpm \
|
|
|
|
--enable-widec
|
2012-11-21 11:12:43 -06:00
|
|
|
|
2015-11-19 01:14:40 +11:00
|
|
|
make
|
|
|
|
make DESTDIR=$PKG install
|
2012-11-21 11:12:43 -06:00
|
|
|
|
2015-11-19 01:14:40 +11:00
|
|
|
rm -r $PKG/usr/{bin,include,share}
|
2012-11-21 11:12:43 -06:00
|
|
|
}
|