diff options
author | davidovski <david@davidovski.xyz> | 2022-01-16 01:23:51 +0000 |
---|---|---|
committer | davidovski <david@davidovski.xyz> | 2022-01-16 01:23:51 +0000 |
commit | cb447620084a20be80d116c81c2e9ec110be7118 (patch) | |
tree | 9fc0d714abbb5c6326b60616a5fd27ec9f984895 /repo/core/ncurses.xibuild | |
parent | 153011e9129c6055ef21c48caf65a23e74a91418 (diff) |
restructured repo system
Diffstat (limited to 'repo/core/ncurses.xibuild')
-rw-r--r-- | repo/core/ncurses.xibuild | 33 |
1 files changed, 0 insertions, 33 deletions
diff --git a/repo/core/ncurses.xibuild b/repo/core/ncurses.xibuild deleted file mode 100644 index c42d402..0000000 --- a/repo/core/ncurses.xibuild +++ /dev/null @@ -1,33 +0,0 @@ -#!/bin/bash - -DEPS=(glibc) - -SOURCE=https://invisible-mirror.net/archives/ncurses/ncurses-6.3.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 - - make DESTDIR=$PKG_DEST install -} - - -package () { - - 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-6.3 - cp -v -R doc/* $PKG_DEST/usr/share/doc/ncurses-6.3 -} |