Add '--enable-webrtc' flag

This commit is contained in:
David Cooper 2024-12-03 13:34:32 -05:00
parent 71cac5b09c
commit 4634b4218f
2 changed files with 5 additions and 4 deletions

View File

@ -1,7 +1,7 @@
pkgbase = butt pkgbase = butt
pkgdesc = Easy to use, multi OS streaming tool pkgdesc = Easy to use, multi OS streaming tool
pkgver = 1.44.0 pkgver = 1.44.0
pkgrel = 1 pkgrel = 2
url = https://danielnoethen.de/butt/ url = https://danielnoethen.de/butt/
arch = i686 arch = i686
arch = x86_64 arch = x86_64
@ -19,6 +19,7 @@ pkgbase = butt
depends = flac depends = flac
depends = opus depends = opus
depends = libsamplerate 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 = 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 source = add-ctime-header.patch
sha256sums = d910b40a10dbca1ce377ee239c146e4746e8b48550ba0a40d6b5199b5c87e0a7 sha256sums = d910b40a10dbca1ce377ee239c146e4746e8b48550ba0a40d6b5199b5c87e0a7

View File

@ -6,12 +6,12 @@
pkgname=butt pkgname=butt
pkgver=1.44.0 pkgver=1.44.0
pkgrel=1 pkgrel=2
pkgdesc="Easy to use, multi OS streaming tool" pkgdesc="Easy to use, multi OS streaming tool"
arch=('i686' 'x86_64' 'aarch64' 'armv7h') arch=('i686' 'x86_64' 'aarch64' 'armv7h')
license=('GPL2') license=('GPL2')
url="https://danielnoethen.de/butt/" 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" source=("${pkgname}-${pkgver}.tar.gz::https://danielnoethen.de/${pkgname}/release/${pkgver}/${pkgname}-${pkgver}.tar.gz"
'add-ctime-header.patch') 'add-ctime-header.patch')
sha256sums=('d910b40a10dbca1ce377ee239c146e4746e8b48550ba0a40d6b5199b5c87e0a7' sha256sums=('d910b40a10dbca1ce377ee239c146e4746e8b48550ba0a40d6b5199b5c87e0a7'
@ -24,7 +24,7 @@ prepare() {
build() { build() {
cd "${pkgname}-${pkgver}" 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 make
} }