obs-studio-plugin-unix-sock.../archLinuxPackaging/PKGBUILD
Stephen Seo 4fbbb6e31e
All checks were successful
Create releases with ArchLinux pkg / check-and-build-and-release (push) Successful in 1s
Fix PKGBUILD (sha256sum)
2024-07-21 17:48:44 +09:00

22 lines
832 B
Bash

pkgname=obs-studio-plugin-unix-socket-control
pkgver=1.4.0
pkgrel=1
pkgdesc="An obs studio plugin to command obs to start/stop recording/streaming via unix socket"
arch=(x86_64)
url="https://git.seodisparate.com/stephenseo/obs-studio-plugin-unix-socket-control"
license=('MIT')
depends=(obs-studio)
makedepends=(cmake)
source=("${pkgname}_${pkgver}.tar.gz::$url/archive/$pkgver.tar.gz")
sha256sums=(6e0f1d4d48e9a26382aaea7e1969788373c301b685c49cd916d7f518ac148265)
build() {
cd "$pkgname"
cmake -S . -B buildRelease -DCMAKE_BUILD_TYPE=Release
make -C buildRelease
}
package() {
install -D -m555 "$srcdir/$pkgname/buildRelease/libunix-socket-control.so" "$pkgdir/usr/lib/obs-plugins/lib$pkgname.so"
install -D -m555 "$srcdir/$pkgname/buildRelease/unix-socket-control-client" "$pkgdir/usr/bin/$pkgname-client"
}