ports: Update git 2.48.1->2.52.0

also remove curl link hack as updating curl port fixed the issue
This commit is contained in:
Bananymous 2025-12-31 19:27:56 +02:00
parent bc71ff5e81
commit bef1a56007
1 changed files with 2 additions and 6 deletions

View File

@ -1,8 +1,8 @@
#!/bin/bash ../install.sh
NAME='git'
VERSION='2.48.1'
DOWNLOAD_URL="https://www.kernel.org/pub/software/scm/git/git-$VERSION.tar.gz#51b4d03b1e311ba673591210f94f24a4c5781453e1eb188822e3d9cdc04c2212"
VERSION='2.52.0'
DOWNLOAD_URL="https://www.kernel.org/pub/software/scm/git/git-$VERSION.tar.xz#3cd8fee86f69a949cb610fee8cd9264e6873d07fa58411f6060b3d62729ed7c5"
DEPENDENCIES=('zlib' 'openssl' 'curl')
CONFIGURE_OPTIONS=(
'--with-curl'
@ -11,7 +11,3 @@ CONFIGURE_OPTIONS=(
ac_cv_snprintf_returns_bogus=no
ac_cv_lib_curl_curl_global_init=yes
)
build() {
make -j$(nproc) CURL_LDFLAGS='-lcurl -lssl -lcrypto -lz -lzstd' || exit 1
}