From 4634b4218fff34d6e0bb96f053d564d88f21f7c7 Mon Sep 17 00:00:00 2001 From: David Cooper Date: Tue, 3 Dec 2024 13:34:32 -0500 Subject: [PATCH] Add '--enable-webrtc' flag --- .SRCINFO | 3 ++- PKGBUILD | 6 +++--- 2 files changed, 5 insertions(+), 4 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index 2de09b9..9a9796c 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,7 +1,7 @@ pkgbase = butt pkgdesc = Easy to use, multi OS streaming tool pkgver = 1.44.0 - pkgrel = 1 + pkgrel = 2 url = https://danielnoethen.de/butt/ arch = i686 arch = x86_64 @@ -19,6 +19,7 @@ pkgbase = butt depends = flac depends = opus depends = libsamplerate + depends = libdatachannel source = butt-1.44.0.tar.gz::https://danielnoethen.de/butt/release/1.44.0/butt-1.44.0.tar.gz source = add-ctime-header.patch sha256sums = d910b40a10dbca1ce377ee239c146e4746e8b48550ba0a40d6b5199b5c87e0a7 diff --git a/PKGBUILD b/PKGBUILD index b5b3d94..d0856e7 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -6,12 +6,12 @@ pkgname=butt pkgver=1.44.0 -pkgrel=1 +pkgrel=2 pkgdesc="Easy to use, multi OS streaming tool" arch=('i686' 'x86_64' 'aarch64' 'armv7h') license=('GPL2') url="https://danielnoethen.de/butt/" -depends=('fltk' 'dbus' 'portaudio' 'portmidi' 'libfdk-aac' 'libvorbis' 'libogg' 'lame' 'flac' 'opus' 'libsamplerate') +depends=('fltk' 'dbus' 'portaudio' 'portmidi' 'libfdk-aac' 'libvorbis' 'libogg' 'lame' 'flac' 'opus' 'libsamplerate' 'libdatachannel') source=("${pkgname}-${pkgver}.tar.gz::https://danielnoethen.de/${pkgname}/release/${pkgver}/${pkgname}-${pkgver}.tar.gz" 'add-ctime-header.patch') sha256sums=('d910b40a10dbca1ce377ee239c146e4746e8b48550ba0a40d6b5199b5c87e0a7' @@ -24,7 +24,7 @@ prepare() { build() { cd "${pkgname}-${pkgver}" - ./configure --with-client --prefix=/usr LDFLAGS="-L$(dirname $(fltk-config --libs))" + ./configure --with-client --enable-webrtc --prefix=/usr LDFLAGS="-L$(dirname $(fltk-config --libs))" make }