View Dockerfile
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
FROM archlinux:latest | |
ENV WINEARCH=win64 \ | |
WINEPATH=Z:/mingw64/bin;Z:/usr/bin;Z:/usr/lib/git-core/ \ | |
WINEDEBUG=-all \ | |
PATH=/mingw64/bin:$PATH | |
COPY docker-images/10-headless.conf /etc/X11/xorg.conf.d/10-headless.conf | |
RUN pacman-key --init && \ | |
pacman-key --populate archlinux |
View 0001-third_party-set-INSTALL-variables-as-cache.patch
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
From 968413df1fa8e534d6c10c0ce56724c7f72c549c Mon Sep 17 00:00:00 2001 | |
From: Christopher Degawa <ccom@randomderp.com> | |
Date: Mon, 20 Dec 2021 12:31:13 -0600 | |
Subject: [PATCH] third_party: set INSTALL variables as cache | |
this would give the option to install only shaderc if they already have | |
the third party repos in their system | |
Signed-off-by: Christopher Degawa <ccom@randomderp.com> | |
--- |
View urlencode.sh
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
urlencode() ( | |
string=${*:-$( | |
cat - | |
printf x | |
)} | |
[ -n "$*" ] || string=${string%x} | |
# Zero index, + 1 to start from 1 since sed starts from 1 | |
lines=$(($(printf %s "$string" | wc -l) + 1)) | |
lineno=1 | |
while [ $lineno -le $lines ]; do |
View cargoc.sh
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/bash | |
pacman -Syu --noconfirm | |
pacman -S --noconfirm $MINGW_PACKAGE_PREFIX-rust | |
git clone https://github.com/lu-zero/cargo-c.git | |
git -C cargo-c pull origin master | |
cargo install --target x86_64-pc-windows-gnu --jobs="$(nproc)" --path=cargo-c | |
git clone https://github.com/xiph/rav1e.git | |
git -C rav1e pull origin master | |
cd rav1e |
View 0001-deps-use-pkg-config-instead-of-find_package.patch
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
From 45b4f838eb4314b27d44983eb5ce054e565ea121 Mon Sep 17 00:00:00 2001 | |
From: Christopher Degawa <ccom@randomderp.com> | |
Date: Wed, 23 Jun 2021 21:50:28 -0500 | |
Subject: [PATCH] deps: use pkg-config instead of find_package | |
Signed-off-by: Christopher Degawa <ccom@randomderp.com> | |
Change-Id: I1e415a04064c451a988e1544485569d6c9483a85 | |
--- | |
cmake/deps.cmake | 30 ++++++++---------------------- | |
1 file changed, 8 insertions(+), 22 deletions(-) |
View morestuff.diff
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff --git a/libavfilter/vf_libvmaf.c b/libavfilter/vf_libvmaf.c | |
index 4c99a32e8c..eb006fb2f2 100644 | |
--- a/libavfilter/vf_libvmaf.c | |
+++ b/libavfilter/vf_libvmaf.c | |
@@ -503,24 +503,24 @@ static av_cold void uninit(AVFilterContext *ctx) | |
ff_framesync_uninit(&s->fs); | |
- if (!s->frame_cnt) return; | |
- |
View gist:5c3201beb464ecb39599a84220f29342
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/bash | |
# Replace --target with your own, it seems it's recommended to have it there | |
# explicitly according to rust's docs | |
# normal build | |
cargo build --release --target=x86_64-unknown-linux-gnu | |
# compile with profile-generate | |
mkdir -p pgo-profile |
View 0001-configure.ac-use-pkg-config-for-regex-and-iconv.patch
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
From 6c3a91d5d48fd9faf7ba96051a0dbb8ac7005edb Mon Sep 17 00:00:00 2001 | |
From: Christopher Degawa <ccom@randomderp.com> | |
Date: Fri, 12 Mar 2021 22:42:50 -0600 | |
Subject: [PATCH] configure.ac: use pkg-config for regex and iconv | |
Signed-off-by: Christopher Degawa <ccom@randomderp.com> | |
--- | |
configure.ac | 2 +- | |
1 file changed, 1 insertion(+), 1 deletion(-) |
View gpac.diff
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff --git a/src/utils/downloader.c b/src/utils/downloader.c | |
index 39708d97c..3dd7e15bd 100644 | |
--- a/src/utils/downloader.c | |
+++ b/src/utils/downloader.c | |
@@ -44,8 +44,7 @@ | |
#endif | |
#ifdef GPAC_HAS_HTTP2 | |
-#if defined(_MSC_VER) | |
-typedef SSIZE_T ssize_t; |
View 0004-Don-t-use-MAX_PATH-for-the-dllPath.patch
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
From 7f538a65278c9f6c0850115f64489637ecaf893b Mon Sep 17 00:00:00 2001 | |
From: Christopher Degawa <ccom@randomderp.com> | |
Date: Fri, 25 Sep 2020 18:57:06 +0000 | |
Subject: [PATCH 4/6] Don't use MAX_PATH for the dllPath | |
Signed-off-by: Christopher Degawa <ccom@randomderp.com> | |
--- | |
fxc2.cpp | 6 ++---- | |
1 file changed, 2 insertions(+), 4 deletions(-) |
NewerOlder