More packages

This commit is contained in:
2025-09-20 23:37:57 +01:00
parent 432715516f
commit 1eec97a688
7 changed files with 103 additions and 9 deletions

View File

@@ -5,11 +5,19 @@ URL=git://github.com/periscop/cloog@${PACKAGE}-${VERSION}
CATEGORY=devel
DEPENDS="devel/autoconf devel/automake libs/isl devel/libtool"
hook_git_clone_post() {
cd "${SRCDIR}/${PACKAGE}-${VERSION}"
git rm -rf isl
git submodule init
git submodule update
}
configure() {
echo "Configuring $PACKAGE"
cd "${SRCDIR}/${PACKAGE}-${VERSION}"
./autogen.sh
./configure --with-isl=system
autoreconf -fiv
./configure --with-isl=system --with-osl=bundled
}
build() {