summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authors-ol <s+removethis@s-ol.nu>2026-05-05 16:25:32 +0000
committers-ol <s+removethis@s-ol.nu>2026-05-05 16:25:32 +0000
commit2852cf5ea646c4891bf351187d9fb29b885fb1c3 (patch)
tree25ff0819feecccaa0e2a35bb0874b5e74effe892
parentadd some gitignores (diff)
downloadaur-2852cf5ea646c4891bf351187d9fb29b885fb1c3.tar.gz
aur-2852cf5ea646c4891bf351187d9fb29b885fb1c3.zip
add obs-plugin-texture-share-vk-git
-rw-r--r--obs-plugin-texture-share-vk-git/.gitignore1
-rw-r--r--obs-plugin-texture-share-vk-git/PKGBUILD33
2 files changed, 34 insertions, 0 deletions
diff --git a/obs-plugin-texture-share-vk-git/.gitignore b/obs-plugin-texture-share-vk-git/.gitignore
new file mode 100644
index 0000000..196024f
--- /dev/null
+++ b/obs-plugin-texture-share-vk-git/.gitignore
@@ -0,0 +1 @@
+/obs-plugin-texture-share-vk-git
diff --git a/obs-plugin-texture-share-vk-git/PKGBUILD b/obs-plugin-texture-share-vk-git/PKGBUILD
new file mode 100644
index 0000000..3b59c89
--- /dev/null
+++ b/obs-plugin-texture-share-vk-git/PKGBUILD
@@ -0,0 +1,33 @@
+# Maintainer: DigitOtter <digitotter@protonmail.com>
+pkgname=obs-plugin-texture-share-vk-git
+pkgver=v0.2.0.r1.g5901023
+pkgrel=1
+pkgdesc="Remote texture sharing plugin for OBS"
+arch=( 'any' )
+url='https://github.com/DigitOtter/obs-plugin-texture-share-vk'
+license=( 'GPL' )
+groups=()
+depends=( 'obs-studio' 'texture-share-vk' )
+makedepends=( 'qt6-base' 'git' 'cmake' 'gcc' )
+provides=( 'obs-plugin-texture-share-vk' )
+conflicts=( 'obs-plugin-texture-share-vk' )
+source=( "${pkgname}::git+https://github.com/s-ol/obs-plugin-texture-share-vk.git#branch=3d-textures" )
+sha256sums=( 'SKIP' )
+
+pkgver() {
+ cd "${pkgname}"
+ git describe --long --tags | sed 's/\([^-]*-g\)/r\1/;s/-/./g'
+}
+
+build() {
+ cmake -B build -S "${pkgname}" \
+ -DCMAKE_BUILD_TYPE='Release' \
+ -DCMAKE_INSTALL_PREFIX='/usr' \
+ -Wno-dev
+ cmake --build build
+}
+
+package() {
+ DESTDIR="${pkgdir}" cmake --install build
+}
+