summaryrefslogtreecommitdiff
path: root/repo/system/ncurses.xibuild
blob: bf3571963128dc32ebbabec20dfad26f0f939640 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
#!/bin/sh

MAKEDEPS="make pkg-config"
DEPS="glibc"

PKG_VER=6.3
SOURCE=https://invisible-mirror.net/archives/ncurses/ncurses-$PKG_VER.tar.gz

DESC="curses emulation library"

build () {
    ./configure --prefix=/usr --mandir=/usr/share/man --with-shared --without-debug --without-normal --enable-pc-files --enable-widec

    make

}


package () {
    make DESTDIR=$PKG_DEST install

    for lib in ncurses form panel menu ; do
        rm -vf                    $PKG_DEST/usr/lib/lib${lib}.so
        echo "INPUT(-l${lib}w)" > $PKG_DEST/usr/lib/lib${lib}.so
        ln -sfv ${lib}w.pc        $PKG_DEST/usr/lib/pkgconfig/${lib}.pc
    done

    rm -vf                     $PKG_DEST/usr/lib/libcursesw.so
    echo "INPUT(-lncursesw)" > $PKG_DEST/usr/lib/libcursesw.so
    ln -sfv libncurses.so      $PKG_DEST/usr/lib/libcurses.so

    # install docs
    mkdir -pv       $PKG_DEST/usr/share/doc/ncurses-$PKG_VER
    cp -v -R doc/* $PKG_DEST/usr/share/doc/ncurses-$PKG_VER
}