Added devel/make

This commit is contained in:
2025-09-21 15:13:48 +01:00
parent d10d4f6dc3
commit e8926d8c86

23
devel/make/PKGCONF Normal file
View File

@@ -0,0 +1,23 @@
VERSION=4.4
PACKAGE=make
SRC=${PACKAGE}-${VERSION}.tar.gz
URL=${SITE_GNU}/${PACKAGE}/${SRC}
CATEGORY=devel
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}"
}