blob: 08aa65c4cf55673a3418fd733cd7ce2eff90219e (
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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
|
# Maintainer: Benjamin Klettbach <b dot klettbach at gmail dot com >
# Contributor: Jonathan Steel <jsteel at archlinux.org>
# Contributor: ArcticVanguard <LideEmily at gmail dot com>
# Contributor: ledti <antergist at gmail dot com>
pkgname=obs-studio-git
pkgver=30.2.3.r364.gb854f61
pkgrel=1
pkgdesc="Free and open source software for video recording and live streaming."
arch=("i686" "x86_64")
url="https://github.com/obsproject/obs-studio"
license=("GPL-2.0-only")
depends=("curl"
"ffmpeg"
"gtk-update-icon-cache"
"jack"
"jansson"
"libajantv2"
"libdatachannel"
"librist"
"libxinerama"
"libxkbcommon-x11"
"mbedtls2"
"onevpl"
"pciutils"
"qrcodegencpp-cmake"
"qt6-svg"
"rnnoise"
"speexdsp"
"uthash")
makedepends=("asio"
"cef-minimal-obs-bin"
"cmake"
"ffnvcodec-headers"
"git"
"libfdk-aac"
"libxcomposite"
"luajit"
"nlohmann-json"
"pipewire"
"python"
"qt6-wayland"
"swig"
"vlc"
"wayland"
"websocketpp"
"x264"
"xdg-desktop-portal")
optdepends=("libfdk-aac: FDK AAC codec support"
"libxcomposite: XComposite capture support"
"libva-intel-driver: hardware encoding"
"libva-mesa-driver: hardware encoding"
"vlc: VLC Media Source"
"luajit: Lua scripting"
"python: Python scripting"
"v4l2loopback-dkms: Virtual webcam"
"pipewire: Pipewire capture"
"pipewire-media-session: Pipewire capture"
"xdg-desktop-portal: Pipewire capture")
provides=("obs-studio=$pkgver")
conflicts=("obs-studio")
source=(
"$pkgname::git+https://github.com/obsproject/obs-studio.git#branch=master"
"git+https://github.com/obsproject/obs-browser.git"
"git+https://github.com/obsproject/obs-websocket.git"
)
sha256sums=(
'SKIP'
'SKIP'
'SKIP'
)
pkgver() {
cd "$pkgname"
local _version=$(git tag | grep -Ev '.*[a-z]{2}.*' | sort -rV | head -1)
local _revision=$(git rev-list --count --cherry-pick "$_version"...HEAD)
local _hash=$(git rev-parse --short=7 HEAD)
printf '%s.r%s.g%s' "${_version:?}" "${_revision:?}" "${_hash:?}"
}
prepare() {
cd "$pkgname"
gitconf="protocol.file.allow=always"
git config submodule.plugins/obs-browser.url $srcdir/obs-browser
git config submodule.plugins/obs-websocket.url $srcdir/obs-websocket
git -c $gitconf submodule update
}
build() {
cmake -B build -S "$pkgname" \
-DCMAKE_INSTALL_PREFIX=/usr \
-DCMAKE_INSTALL_LIBDIR=lib \
-DENABLE_AJA=0 \
-DENABLE_BROWSER=ON \
-DENABLE_JACK=ON \
-DENABLE_LIBFDK=ON \
-DCEF_ROOT_DIR="/opt/cef-obs" \
-DOBS_VERSION_OVERRIDE="${pkgver%%.r*}" \
-DOBS_COMPILE_DEPRECATION_AS_WARNING=ON \
-DENABLE_UNIT_TESTS=OFF \
-DBUILD_TESTS=OFF \
-Wno-dev
cmake --build build
}
package() {
DESTDIR="$pkgdir" cmake --install build
}
# vim: ts=2:sw=2:expandtab
|