Skip to content

Commit 5eb8e4e

Browse files
committed
Download fixes gnu mirrors
1 parent d22553c commit 5eb8e4e

1 file changed

Lines changed: 8 additions & 8 deletions

File tree

build-ffmpeg

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -500,31 +500,31 @@ if build "zlib" "1.3.2"; then
500500
fi
501501

502502
if build "m4" "1.4.20"; then
503-
download "https://ftpmirror.gnu.org/gnu/m4/m4-$CURRENT_PACKAGE_VERSION.tar.gz"
503+
download "https://ftp.gnu.org/gnu/m4/m4-$CURRENT_PACKAGE_VERSION.tar.gz"
504504
execute ./configure --prefix="${WORKSPACE}"
505505
execute make -j "$MJOBS"
506506
execute make install
507507
build_done "m4" $CURRENT_PACKAGE_VERSION
508508
fi
509509

510510
if build "autoconf" "2.72"; then
511-
download "https://ftpmirror.gnu.org/gnu/autoconf/autoconf-$CURRENT_PACKAGE_VERSION.tar.gz"
511+
download "https://ftp.gnu.org/gnu/autoconf/autoconf-$CURRENT_PACKAGE_VERSION.tar.gz"
512512
execute ./configure --prefix="${WORKSPACE}"
513513
execute make -j "$MJOBS"
514514
execute make install
515515
build_done "autoconf" $CURRENT_PACKAGE_VERSION
516516
fi
517517

518518
if build "automake" "1.18.1"; then
519-
download "https://ftpmirror.gnu.org/gnu/automake/automake-$CURRENT_PACKAGE_VERSION.tar.gz"
519+
download "https://ftp.gnu.org/gnu/automake/automake-$CURRENT_PACKAGE_VERSION.tar.gz"
520520
execute ./configure --prefix="${WORKSPACE}"
521521
execute make -j "$MJOBS"
522522
execute make install
523523
build_done "automake" $CURRENT_PACKAGE_VERSION
524524
fi
525525

526526
if build "libtool" "2.5.4"; then
527-
download "https://ftpmirror.gnu.org/libtool/libtool-$CURRENT_PACKAGE_VERSION.tar.gz"
527+
download "https://ftp.gnu.org/gnu/libtool/libtool-$CURRENT_PACKAGE_VERSION.tar.gz"
528528
execute ./configure --prefix="${WORKSPACE}" --enable-static --disable-shared
529529
execute make -j "$MJOBS"
530530
execute make install
@@ -533,14 +533,14 @@ fi
533533

534534
if $NONFREE_AND_GPL; then
535535
if build "gettext" "1.0"; then
536-
download "https://ftpmirror.gnu.org/gettext/gettext-$CURRENT_PACKAGE_VERSION.tar.gz"
536+
download "https://ftp.gnu.org/gnu/gettext/gettext-$CURRENT_PACKAGE_VERSION.tar.gz"
537537
execute ./configure --prefix="${WORKSPACE}" --enable-static --disable-shared
538538
execute make -j "$MJOBS"
539539
execute make install
540540
build_done "gettext" $CURRENT_PACKAGE_VERSION
541541
fi
542542

543-
if build "openssl" "3.6.1"; then
543+
if build "openssl" "3.6.3"; then
544544
download "https://github.com/openssl/openssl/archive/refs/tags/openssl-$CURRENT_PACKAGE_VERSION.tar.gz" "openssl-$CURRENT_PACKAGE_VERSION.tar.gz"
545545
execute ./Configure --prefix="${WORKSPACE}" --openssldir="${WORKSPACE}" --libdir="lib" --with-zlib-include="${WORKSPACE}"/include/ --with-zlib-lib="${WORKSPACE}"/lib no-shared zlib
546546
execute make -j "$MJOBS"
@@ -550,15 +550,15 @@ if $NONFREE_AND_GPL; then
550550
CONFIGURE_OPTIONS+=("--enable-openssl")
551551
else
552552
if build "gmp" "6.3.0"; then
553-
download "https://ftpmirror.gnu.org/gnu/gmp/gmp-$CURRENT_PACKAGE_VERSION.tar.xz"
553+
download "https://ftp.gnu.org/gnu/gmp/gmp-$CURRENT_PACKAGE_VERSION.tar.xz"
554554
execute ./configure --prefix="${WORKSPACE}" --disable-shared --enable-static
555555
execute make -j "$MJOBS"
556556
execute make install
557557
build_done "gmp" $CURRENT_PACKAGE_VERSION
558558
fi
559559

560560
if build "nettle" "3.10.2"; then
561-
download "https://ftpmirror.gnu.org/gnu/nettle/nettle-$CURRENT_PACKAGE_VERSION.tar.gz"
561+
download "https://ftp.gnu.org/gnu/nettle/nettle-$CURRENT_PACKAGE_VERSION.tar.gz"
562562
execute ./configure --prefix="${WORKSPACE}" --disable-shared --enable-static --disable-openssl --disable-documentation --libdir="${WORKSPACE}"/lib CPPFLAGS="${CFLAGS}" LDFLAGS="${LDFLAGS}"
563563
execute make -j "$MJOBS"
564564
execute make install

0 commit comments

Comments
 (0)