Added tar, mpc and mpfr

This commit is contained in:
2025-09-21 00:25:08 +01:00
parent 1eec97a688
commit e2ec9afd77
3 changed files with 71 additions and 0 deletions

24
libs/mpc/PKGCONF Normal file
View File

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

24
libs/mpfr/PKGCONF Normal file
View File

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