cruxports/wf-recorder/Pkgfile

18 lines
526 B
Plaintext
Raw Normal View History

2022-02-05 20:39:19 +00:00
# Description: screen recording app for the wayland desktop
# URL: https://github.com/ammen99/wf-recorder/
# Maintainer: John McQuah, jmcquah at disroot dot org
2022-11-13 18:21:40 +00:00
# Depends on: ffmpeg pulseaudio wayland-protocols x264
2022-02-05 20:39:19 +00:00
# Nice to have: x265
name=wf-recorder
2022-11-13 18:21:40 +00:00
version=0.3.0
2022-02-05 20:39:19 +00:00
release=1
source=(https://github.com/ammen99/$name/releases/download/v$version/$name-$version.tar.xz)
build() {
cd $name-$version
2022-11-13 18:21:40 +00:00
meson setup build --prefix=/usr --buildtype=release
2022-02-05 20:39:19 +00:00
ninja -C build -j ${JOBS-1}
DESTDIR=$PKG ninja -C build install
}