Added shell/bash

This commit is contained in:
2025-09-21 14:48:02 +01:00
parent dedaab6fa9
commit 7b64dcf360

24
shell/bash/PKGCONF Normal file
View File

@@ -0,0 +1,24 @@
VERSION=5.3
PACKAGE=bash
SRC=${PACKAGE}-${VERSION}.tar.gz
URL=${SITE_GNU}/${PACKAGE}/${SRC}
CATEGORY=shell
DEPENDS=libs/libiconv
configure() {
echo "Configuring $PACKAGE"
cd "${SRCDIR}/${PACKAGE}-${VERSION}"
./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}"
}