2012-11-21 11:12:43 -06:00
|
|
|
# Description: A System V Release 4.0 curses emulation library
|
2021-10-23 16:06:45 +02:00
|
|
|
# URL: https://invisible-island.net/ncurses/announce.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
|
2024-05-01 17:38:36 +02:00
|
|
|
version=6.5
|
2012-11-21 11:12:43 -06:00
|
|
|
release=1
|
2021-10-23 16:06:45 +02:00
|
|
|
source=(https://invisible-mirror.net/archives/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
|
|
|
}
|