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

23
libs/gmp/PKGCONF Normal file
View File

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