forked from ports/compat-32
31 lines
664 B
Plaintext
31 lines
664 B
Plaintext
# Description: A System V Release 4.0 curses emulation library
|
|
# URL: http://www.gnu.org/software/ncurses/ncurses.html
|
|
# Maintainer: CRUX compat-32 Team, compat-32-ports at crux dot nu
|
|
|
|
name=ncurses-32
|
|
version=6.1
|
|
release=1
|
|
source=(https://ftp.gnu.org/gnu/ncurses/ncurses-$version.tar.gz)
|
|
|
|
build() {
|
|
cd ncurses-$version
|
|
|
|
./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
|
|
|
|
make
|
|
make DESTDIR=$PKG install
|
|
|
|
rm -r $PKG/usr/{bin,include,share}
|
|
}
|