Initial building work

This commit is contained in:
2025-09-20 15:57:29 +01:00
commit dea360f0f3
8 changed files with 313 additions and 0 deletions

24
devel/autoconf/PKGCONF Normal file
View File

@@ -0,0 +1,24 @@
VERSION=2.72
PACKAGE=autoconf
SRC=${PACKAGE}-${VERSION}.tar.gz
URL=${SITE_GNU}/${PACKAGE}/${SRC}
DEPENDS=m4
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}"
}