From 79c82d8fc0a4f6618429a0373bb832afd105543e Mon Sep 17 00:00:00 2001 From: davidovski Date: Sun, 27 Feb 2022 00:55:34 +0000 Subject: added all missing libraries and headers that musl doesnt have --- repo/system/ncurses.xibuild | 13 ++++++------- 1 file changed, 6 insertions(+), 7 deletions(-) (limited to 'repo/system/ncurses.xibuild') diff --git a/repo/system/ncurses.xibuild b/repo/system/ncurses.xibuild index 5a1e4d0..a5e820b 100644 --- a/repo/system/ncurses.xibuild +++ b/repo/system/ncurses.xibuild @@ -12,7 +12,6 @@ build () { ./configure --prefix=/usr --mandir=/usr/share/man --with-shared --without-debug --without-normal --enable-pc-files --enable-widec make - } @@ -20,16 +19,16 @@ package () { make DESTDIR=$PKG_DEST install for lib in ncurses form panel menu ; do - rm -vf $PKG_DEST/usr/lib/lib${lib}.so + rm -f $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 + ln -sf ${lib}w.pc $PKG_DEST/usr/lib/pkgconfig/${lib}.pc done - rm -vf $PKG_DEST/usr/lib/libcursesw.so + rm -f $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 + ln -sf 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 + mkdir -p $PKG_DEST/usr/share/doc/ncurses-$PKG_VER + cp -R doc/* $PKG_DEST/usr/share/doc/ncurses-$PKG_VER } -- cgit v1.2.1