diff options
| author | emmett1 <emmett1.2miligrams@protonmail.com> | 2025-09-07 12:58:26 +0800 |
|---|---|---|
| committer | emmett1 <emmett1.2miligrams@protonmail.com> | 2025-09-07 12:58:26 +0800 |
| commit | 7a568c4325b338179429d6b8c5deafbf43bd5c64 (patch) | |
| tree | 414107fe68efe6c1c66b1071d30b3ea3001a3dfa /repos/extra/ncurses/abuild | |
| parent | 1289cb00fceab46f4232aadcefd59f744dba76ed (diff) | |
| download | alicelinux-7a568c4325b338179429d6b8c5deafbf43bd5c64.tar.gz alicelinux-7a568c4325b338179429d6b8c5deafbf43bd5c64.zip | |
ncurses: removed clear and reset as shipped by busybox now
Diffstat (limited to 'repos/extra/ncurses/abuild')
| -rw-r--r-- | repos/extra/ncurses/abuild | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/repos/extra/ncurses/abuild b/repos/extra/ncurses/abuild index 02a0e199..ccf8ff43 100644 --- a/repos/extra/ncurses/abuild +++ b/repos/extra/ncurses/abuild @@ -1,6 +1,6 @@ name=ncurses version=6.5 -release=2 +release=3 source="https://invisible-mirror.net/archives/$name/$name-$version.tar.gz" build_opt="--without-debug --with-shared @@ -25,4 +25,8 @@ postbuild() { rm -vf $PKG/usr/lib/libcursesw.so echo "INPUT(-lncursesw)" > $PKG/usr/lib/libcursesw.so ln -sfv libncurses.so $PKG/usr/lib/libcurses.so + + # shipped by busybox + rm $PKG/usr/bin/clear \ + $PKG/usr/bin/reset } |