ports/curl: remove libcurl.la file and use /dev/urandom

This commit is contained in:
Bananymous 2024-12-03 16:23:46 +02:00
parent 88c9f6d233
commit 86859267f0
1 changed files with 6 additions and 1 deletions

View File

@ -8,9 +8,14 @@ CONFIGURE_OPTIONS=(
'--disable-threaded-resolver'
'--disable-ipv6'
'--disable-docs'
'--disable-ntlm'
'--with-openssl'
'--with-zlib'
'--with-random=/dev/random'
'--with-ca-bundle=/etc/ssl/certs/ca-certificates.crt'
'--without-ca-path'
)
install() {
make install DESTDIR="$BANAN_SYSROOT" || exit 1
rm -f $BANAN_SYSROOT/usr/lib/libcurl.la
}