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

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