18 lines
522 B
Plaintext
18 lines
522 B
Plaintext
# Description: screen recording app for the wayland desktop
|
|
# URL: https://github.com/ammen99/wf-recorder/
|
|
# Maintainer: John McQuah, jmcquah at disroot dot org
|
|
# Depends on: ffmpeg pulseaudio wayland-protocols
|
|
# Nice to have: x265
|
|
|
|
name=wf-recorder
|
|
version=0.3.0
|
|
release=1
|
|
source=(https://github.com/ammen99/$name/releases/download/v$version/$name-$version.tar.xz)
|
|
|
|
build() {
|
|
cd $name-$version
|
|
meson setup build --prefix=/usr --buildtype=release
|
|
ninja -C build -j ${JOBS:-1}
|
|
DESTDIR=$PKG ninja -C build install
|
|
}
|