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}"
}

24
libs/isl/PKGCONF Normal file
View File

@@ -0,0 +1,24 @@
PACKAGE=isl
VERSION=0.27
SRC=${PACKAGE}-${VERSION}.tar.gz
URL=ftp://ftp.majenko.co.uk/mirrors/libisl.sourceforge.io/${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}"
}

23
libs/libiconv/PKGCONF Normal file
View File

@@ -0,0 +1,23 @@
PACKAGE=libiconv
VERSION=1.18
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}"
}