Date: Friday, March 3, 2023 @ 17:59:16
Author: arojas
Revision: 1410101
archrelease: copy trunk to community-staging-x86_64
Added:
nageru/repos/community-staging-x86_64/
nageru/repos/community-staging-x86_64/PKGBUILD
(from rev 1410100, nageru/trunk/PKGBUILD)
----------+
PKGBUILD | 30 ++++++++++++++++++++++++++++++
1 file changed, 30 insertions(+)
Copied: nageru/repos/community-staging-x86_64/PKGBUILD (from rev 1410100,
nageru/trunk/PKGBUILD)
===================================================================
--- community-staging-x86_64/PKGBUILD (rev 0)
+++ community-staging-x86_64/PKGBUILD 2023-03-03 17:59:16 UTC (rev 1410101)
@@ -0,0 +1,30 @@
+# Maintainer: Morten Linderud <[email protected]>
+
+pkgname=nageru
+pkgver=2.2.0
+pkgrel=2
+pkgdesc="live video mixer, based around the standard M/E workflow."
+arch=(x86_64)
+url="https://nageru.sesse.net/"
+license=('GPL3')
+depends=('libmicrohttpd' 'ffmpeg' 'libx264' 'protobuf'
+ 'movit' 'bmusb' 'qcustomplot' 'pciutils' 'zita-resampler'
+ 'sqlite3' 'luajit' 'cmake')
+makedepends=('meson' 'eigen' 'qt5-tools')
+source=("https://nageru.sesse.net/nageru-${pkgver}.tar.gz")
+sha256sums=('cbdde4d0604b5c241b5a9f876375692a57b0da4535d4b3bbd944e80bd8dcfece')
+
+build() {
+ arch-meson $pkgname-$pkgver build
+ meson compile -C build -v
+}
+
+check() {
+ meson test -C build --print-errorlogs
+}
+
+package() {
+ meson install -C build --destdir "$pkgdir"
+}
+
+# vim:set ts=2 sw=2 et: