From 77b0d28a93c0056a467e8fb827bcd327c5e94ad7 Mon Sep 17 00:00:00 2001 From: xpamych Date: Sun, 23 Apr 2023 12:39:57 +0300 Subject: [PATCH] =?UTF-8?q?=D0=B4=D0=BE=D0=B1=D0=B0=D0=B2=D0=BB=D0=B5?= =?UTF-8?q?=D0=BD=20obs-vkcapture?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- obs-vkcapture/lure.sh | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 obs-vkcapture/lure.sh diff --git a/obs-vkcapture/lure.sh b/obs-vkcapture/lure.sh new file mode 100644 index 0000000..cbd3d86 --- /dev/null +++ b/obs-vkcapture/lure.sh @@ -0,0 +1,29 @@ +name='obs-vkcapture' +version='1.3.2' +release='1' +desc='OBS plugin for Vulkan/OpenGL game capture on Linux.' +homepage='https://github.com/nowrep/obs-vkcapture' +maintainer="Евгений Храмов " +architectures=('amd64') +license=('GPL-2.0 license') +provides=('obs-vkcapture' 'lib32-obs-vkcapture') +conflicts=('obs-vkcapture' 'lib32-obs-vkcapture') +deps=('vulkan-icd-loader' 'libgl' 'obs-studio>=27') +build_deps=('git' 'gcc' 'cmake' 'vulkan-headers' 'lib32-gcc-libs' 'lib32-vulkan-icd-loader' 'lib32-libgl') + +sources=("https://github.com/nowrep/obs-vkcapture/releases/tag/v{$version}") +checksums=('SKIP') + +prepare() { + cd "${srcdir}/obs-vkcapture" + mkdir buil && cd build +} + +build() { + cmake -DCMAKE_INSTALL_PREFIX=/usr .. + make && make install + } +package() { +# install -Dm755 ./${name}v${version}/ "${pkgdir}/usr/bin/" +# install -Dm644 "${srcdir}/" "${pkgdir}/usr/lib/" +}