blob: d8423d9b1142afaf7ffa8deaf29ea5767115d861 (
plain)
1 # Description: A System V Release 4.0 curses emulation library
2 # URL: https://invisible-island.net/ncurses/announce.html
3 # Maintainer: CRUX compat-32 Team, compat-32-ports at crux dot nu
4
5 name=ncurses-32
6 version=6.4
7 release=1
8 source=(https://invisible-mirror.net/archives/ncurses/ncurses-$version.tar.gz)
9
10 build() {
11 cd ncurses-$version
12
13 ./configure \
14 --prefix=/usr \
15 --libdir=/usr/lib32 \
16 --with-normal \
17 --with-shared \
18 --without-debug \
19 --without-ada \
20 --without-tests \
21 --enable-pc-files \
22 --with-pkg-config-libdir=/usr/lib32/pkgconfig \
23 --without-gpm \
24 --enable-widec
25
26 make
27 make DESTDIR=$PKG install
28
29 rm -r $PKG/usr/{bin,include,share}
30 }
|