Commit | Line | Data |
---|---|---|
6dca1d21 JB |
1 | # Description: A System V Release 4.0 curses emulation library |
2 | # URL: http://www.gnu.org/software/ncurses/ncurses.html | |
3 | # Maintainer: CRUX System Team, core-ports at crux dot nu | |
b751b192 | 4 | # Arch Maintainer: CRUX-ARM System Team, devel at crux-arm dot nu |
6dca1d21 JB |
5 | # Depends on: |
6 | ||
7 | name=ncurses | |
7be39686 VM |
8 | version=6.1 |
9 | release=1 | |
10 | source=(http://ftpmirror.gnu.org/gnu/$name/$name-$version.tar.gz) | |
6dca1d21 JB |
11 | |
12 | build() { | |
13 | cd $name-$version | |
14 | ||
29ff8d68 VM |
15 | ./configure --build=$CHOST \ |
16 | --host=$CTARGET \ | |
17 | --with-install-prefix=$PKG \ | |
18 | --prefix=/usr \ | |
19 | --mandir=/usr/share/man \ | |
20 | --with-{normal,shared} \ | |
21 | --without-{debug,ada,tests} \ | |
22 | --enable-pc-files \ | |
7be39686 VM |
23 | --enable-widec \ |
24 | --disable-stripping | |
29ff8d68 | 25 | |
6dca1d21 | 26 | make |
29ff8d68 VM |
27 | make DESTDIR=$PKG install |
28 | ||
29 | install -d $PKG/{lib,usr/include/ncursesw,usr/lib/pkgconfig} | |
30 | ||
31 | # move library to /lib and create symlinks | |
32 | mv $PKG/usr/lib/libncursesw.so.* $PKG/lib | |
33 | ln -sf ../../lib/libncursesw.so.$version $PKG/usr/lib/libncursesw.so | |
34 | ln -s libncursesw.so.$version $PKG/lib/libncurses.so.${version%%.*} | |
35 | ||
36 | # linker scripts and .pc files for non-wide ncurses | |
37 | for LIB in ncurses form panel menu ; do | |
38 | echo "INPUT(-l${LIB}w)" > $PKG/usr/lib/lib${LIB}.so | |
39 | ln -s ${LIB}w.pc $PKG/usr/lib/pkgconfig/${LIB}.pc | |
1178a74d | 40 | done |
29ff8d68 VM |
41 | |
42 | # linker script for the curses library | |
43 | echo "INPUT(-lncursesw)" > $PKG/usr/lib/libcursesw.so | |
44 | ln -s libncurses.so $PKG/usr/lib/libcurses.so | |
6dca1d21 | 45 | } |