contrib/obs-studio/Pkgfile

37 lines
821 B
Plaintext
Raw Normal View History

2019-03-07 08:22:56 +01:00
# Description: Open Broadcaster Software Studio
# URL: https://obsproject.com/
# Maintainer: Danny Rawlins, crux at romster dot me
# Depends on: fdk-aac ffmpeg jansson libgmp qt5 x264
# Optional: jack-audio-connection-kit ffnvcodec-headers vlc luajit speexdsp x265 pulseaudio
name=obs-studio
2019-06-16 14:56:55 +02:00
version=23.2.1
2019-03-07 08:22:56 +01:00
release=1
2019-04-14 10:28:29 +02:00
source=(https://github.com/obsproject/$name/archive/$version/$name-$version.tar.gz)
2019-03-07 08:22:56 +01:00
build() {
cd $name-$version
mkdir build
cd build
cmake .. \
-DCMAKE_INSTALL_PREFIX='/usr' \
-DOBS_VERSION_OVERRIDE="$version" \
-DUNIX_STRUCTURE=ON \
-DCMAKE_BUILD_TYPE=Release
make
make DESTDIR="$PKG" install
2019-06-16 14:56:55 +02:00
chmod -R g-w $PKG
2019-03-07 08:22:56 +01:00
rm -r $PKG/usr/share/obs/obs-studio/authors/AUTHORS
find $PKG/usr/share/obs \
-iname '*ini' \
! -iname 'en-*.ini' \
! -iname 'locale.ini' \
-exec rm '{}' \+
}