Added ncurses

This commit is contained in:
2025-09-21 15:00:38 +01:00
parent 7b64dcf360
commit d10d4f6dc3

24
libs/ncurses/PKGCONF Normal file
View File

@@ -0,0 +1,24 @@
PACKAGE=ncurses
VERSION=6.5
SRC=${PACKAGE}-${VERSION}.tar.gz
URL=${SITE_GNU}/${PACKAGE}/${SRC}
CATEGORY=libs
DEPENDS=shell/bash
configure() {
echo "Configuring $PACKAGE"
cd "${SRCDIR}/${PACKAGE}-${VERSION}"
bash ./configure
}
build() {
echo "Building $PACKAGE"
cd "${SRCDIR}/${PACKAGE}-${VERSION}"
make -j ${NCPU}
}
install() {
echo "Installing $PACKAGE to ${DESTDIR}"
cd "${SRCDIR}/${PACKAGE}-${VERSION}"
make install DESTDIR="${DESTDIR}"
}