diff options
| author | Lexi Winter <ivy@FreeBSD.org> | 2025-10-15 12:28:43 +0000 |
|---|---|---|
| committer | Lexi Winter <ivy@FreeBSD.org> | 2025-10-15 12:29:28 +0000 |
| commit | bde703e8b6ab3acc73bbb20f1ebe26221f33e9f1 (patch) | |
| tree | 3b7a3e94b2989747f9cfe57eb76015a066487669 | |
| parent | bf84861460f9287fe9cf66b2cd22fefe8e242a28 (diff) | |
ncurses: Add an ncurses-lib package
Set LIB_PACKAGE= in lib/ncurses/Makefile.inc so the ncurses libraries
go into the ncurses-lib subpackage rather than the base package. This
means applications that depend on ncurses can be installed without
needing to install the various utilities and manpages.
This removes a dependency from runtime to ncurses (it now depends on
ncurses-lib instead).
MFC after: 3 seconds
Reviewed by: kevans
Sponsored by: https://www.patreon.com/bsdivy
Differential Revision: https://reviews.freebsd.org/D53060
| -rw-r--r-- | lib/ncurses/Makefile.inc | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/ncurses/Makefile.inc b/lib/ncurses/Makefile.inc index eea49908474c..e14867696834 100644 --- a/lib/ncurses/Makefile.inc +++ b/lib/ncurses/Makefile.inc @@ -1,6 +1,7 @@ # This is to include src/lib/Makefile.inc PACKAGE?= ncurses +LIB_PACKAGE= WARNS?= 3 .include "../Makefile.inc" |
