From c25c0042f5bd0c4d138edcbfbc21d850b0e94fa9 Mon Sep 17 00:00:00 2001 From: k4yt3x Date: Mon, 23 Dec 2024 00:00:00 +0000 Subject: [PATCH] build(container): optimize container build speed Signed-off-by: k4yt3x --- packaging/arch/PKGBUILD | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/packaging/arch/PKGBUILD b/packaging/arch/PKGBUILD index bc5bee2..2e07b31 100644 --- a/packaging/arch/PKGBUILD +++ b/packaging/arch/PKGBUILD @@ -4,7 +4,7 @@ pkgrel=1 pkgdesc="A machine learning-based video super resolution and frame interpolation framework" arch=('x86_64') url="https://github.com/k4yt3x/video2x" -license=('AGPL3') +license=('AGPL-3.0-only') depends=('ffmpeg' 'ncnn' 'vulkan-driver' 'spdlog' 'boost-libs') makedepends=('git' 'cmake' 'clang' 'vulkan-headers' 'openmp' 'boost') @@ -13,6 +13,7 @@ pkgver() { } prepare() { + git rm third_party/{ncnn,spdlog,boost} git submodule update --init --recursive }