blob: 0ef604a00a3dd74a29f4fab1b15c740441d50e74 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
|
# Maintainer: tytan652 <tytan652@tytanium.xyz>
_pluginname=transition-table
pkgname=obs-$_pluginname
pkgver=0.2.1
_obsver=27.0.0
pkgrel=1
pkgdesc="Plugin for OBS Studio to add a Transition Table to the tools menu"
arch=("i686" "x86_64" "aarch64")
url="https://obsproject.com/forum/resources/transition-table.1174/"
license=("GPL2")
depends=("obs-studio>=$_obsver")
makedepends=("cmake" "git" "libxcomposite")
source=(
"$pkgname-$pkgver::git+https://github.com/exeldro/obs-transition-table#commit=7e6ba5cc715f724dd78582fd12651e0cf82962eb"
"obs-studio-$_obsver.tar.gz::https://github.com/obsproject/obs-studio/archive/$_obsver.tar.gz"
)
sha256sums=(
"SKIP"
"c7ea5369f4c94203a8a81b73c6372873f08ab9e5b20860691dad2c29f5dda85e"
)
prepare() {
rm -rf fakeroot
cd "obs-studio-$_obsver"/UI/frontend-plugins
cp -r "$srcdir/$pkgname-$pkgver" .
echo "add_subdirectory($pkgname-$pkgver)" | tee -a CMakeLists.txt >/dev/null
}
# Need to compile plugin in OBS compilation process
build() {
cd "obs-studio-$_obsver"
cmake -B build \
-DCMAKE_INSTALL_PREFIX=/usr \
-DCMAKE_INSTALL_LIBDIR=lib \
-DENABLE_UI=ON \
-DENABLE_WAYLAND=OFF \
-DENABLE_PIPEWIRE=OFF \
-DENABLE_SCRIPTING=OFF \
-DDISABLE_DECKLINK=ON \
-DDISABLE_ALSA=ON \
-DDISABLE_JACK=ON \
-DDISABLE_PULSEAUDIO=ON \
-DDISABLE_V4L2=ON \
-DDISABLE_SPEEXDSP=ON \
-DDISABLE_LIBFDK=ON \
-DDISABLE_SNDIO=ON \
-DDISABLE_FREETYPE=ON \
-DDISABLE_VLC=ON \
-DBUILD_BROWSER=OFF \
-DBUILD_VST=OFF \
-DWITH_RTMPS=OFF
make -C build
}
package() {
mkdir -p "$pkgdir"/usr/lib/obs-plugins
mkdir -p "$pkgdir"/usr/share/obs/obs-plugins
cd "obs-studio-$_obsver"
make -C build DESTDIR="$srcdir/fakeroot/" install
cp -a "$srcdir"/fakeroot/usr/lib/obs-plugins/$_pluginname.so "$pkgdir"/usr/lib/obs-plugins/
cp -a "$srcdir"/fakeroot/usr/share/obs/obs-plugins/$_pluginname "$pkgdir"/usr/share/obs/obs-plugins/
}
|