Skip to content

Commit e6d068e

Browse files
committed
use mirror
1 parent d794c02 commit e6d068e

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ Requirements MacOS
5858
Requirements Linux
5959
------------
6060
* Debian >= Buster, Ubuntu => Focal Fossa, other Distributions might work too
61-
* build-essentials, curl, and Python3 is requre installed:
61+
* build-essentials, curl, and Python3 is required installed:
6262

6363
```
6464
# Debian and Ubuntu

build-ffmpeg

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -287,7 +287,7 @@ fi
287287
# Required for building vaapi tools so linux only
288288
if [[ "$OSTYPE" == "linux-gnu" ]]; then
289289
if build "m4"; then
290-
download "https://ftp.gnu.org/gnu/m4/m4-1.4.18.tar.xz"
290+
download "https://ftpmirror.gnu.org/m4/m4-1.4.18.tar.xz"
291291
# https://lists.gnu.org/archive/html/bug-m4/2018-08/msg00000.html
292292
# No new version of M4 has been released, so a patch has been applied.
293293
execute curl -sLJO https://github.com/easybuilders/easybuild-easyconfigs/raw/master/easybuild/easyconfigs/m/M4/M4-1.4.18_glibc_2.28.patch
@@ -299,31 +299,31 @@ if [[ "$OSTYPE" == "linux-gnu" ]]; then
299299
fi
300300

301301
if build "autoconf"; then
302-
download "https://ftp.gnu.org/gnu/autoconf/autoconf-2.69.tar.xz"
302+
download "https://ftpmirror.gnu.org/autoconf/autoconf-2.69.tar.xz"
303303
execute ./configure --prefix="${WORKSPACE}"
304304
execute make -j $MJOBS
305305
execute make install
306306
build_done "autoconf"
307307
fi
308308

309309
if build "automake"; then
310-
download "https://ftp.gnu.org/gnu/automake/automake-1.16.tar.xz"
310+
download "https://ftpmirror.gnu.org/automake/automake-1.16.tar.xz"
311311
execute ./configure --prefix="${WORKSPACE}"
312312
execute make -j $MJOBS
313313
execute make install
314314
build_done "automake"
315315
fi
316316

317317
if build "util-macros"; then
318-
download "https://www.x.org/archive/individual/util/util-macros-1.19.2.tar.gz"
318+
download "https://gitlab.freedesktop.org/xorg/util/macros/-/archive/util-macros-1.19.2/macros-util-macros-1.19.2.tar.bz2" "util-macros-1.19.2.tar.bz2"
319319
execute ./configure --prefix="${WORKSPACE}"
320320
execute make -j $MJOBS
321321
execute make install
322322
build_done "util-macros"
323323
fi
324324

325325
if build "libtool"; then
326-
download "https://ftp.jaist.ac.jp/pub/GNU/libtool/libtool-2.4.6.tar.xz"
326+
download "https://ftpmirror.gnu.org/libtool/libtool-2.4.6.tar.xz"
327327
execute ./configure --prefix="${WORKSPACE}" --disable-shared --enable-static
328328
execute make -j $MJOBS
329329
execute make install
@@ -581,7 +581,7 @@ if [[ "$OSTYPE" == "linux-gnu" ]]; then
581581
fi
582582

583583
if build "libdrm"; then
584-
download "https://dri.freedesktop.org/libdrm/libdrm-2.4.102.tar.xz"
584+
download "https://gitlab.freedesktop.org/mesa/drm/-/archive/libdrm-2.4.102/drm-libdrm-2.4.102.tar.bz2" "libdrm-2.4.102.tar.bz2"
585585
execute meson --prefix="${WORKSPACE}" --libdir="${WORKSPACE}"/lib builddir/
586586
execute ninja -C builddir/ install
587587
build_done "libdrm"

0 commit comments

Comments
 (0)