More libs and deps

This commit is contained in:
2025-09-20 17:23:10 +01:00
parent 63f79d2051
commit 6833260506
8 changed files with 195 additions and 1 deletions

View File

@@ -1,7 +1,7 @@
VERSION=2.45
PACKAGE=binutils
SRC=${PACKAGE}-${VERSION}.tar.gz
URL=${SITE_GNU}/binutils/${SRC}
URL=${SITE_GNU}/${PACKAGE}/${SRC}
CATEGORY=devel
DEPENDS=libs/isl

25
devel/cloog/PKGCONF Normal file
View File

@@ -0,0 +1,25 @@
VERSION=0.21.1
PACKAGE=cloog
SRC=${PACKAGE}-${VERSION}.tar.gz
URL=git://github.com/periscop/cloog@${PACKAGE}-${VERSION}
CATEGORY=devel
DEPENDS="devel/autoconf devel/automake libs/isl devel/libtool"
configure() {
echo "Configuring $PACKAGE"
cd "${SRCDIR}/${PACKAGE}-${VERSION}"
./autogen.sh
./configure --with-isl=system
}
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
devel/libtool/PKGCONF Normal file
View File

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