More packages

This commit is contained in:
2025-09-22 20:04:53 +01:00
parent 8c843a5f94
commit 6909061a17
5 changed files with 68 additions and 5 deletions

23
crypto/nettle/PKGCONF Normal file
View File

@@ -0,0 +1,23 @@
VERSION=3.10
PACKAGE=nettle
SRC=${PACKAGE}-${VERSION}.tar.gz
URL=${SITE_GNU}/${PACKAGE}/${SRC}
CATEGORY=crypto
configure() {
echo "Configuring $PACKAGE"
cd "${SRCDIR}/${PACKAGE}-${VERSION}"
./configure --disable-openssl --enable-shared
}
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}"
}