Date: Thursday, January 5, 2023 @ 20:41:50
Author: arojas
Revision: 1378369
archrelease: copy trunk to community-testing-x86_64
Added:
frei0r-plugins/repos/community-testing-x86_64/
frei0r-plugins/repos/community-testing-x86_64/PKGBUILD
(from rev 1378368, frei0r-plugins/trunk/PKGBUILD)
frei0r-plugins/repos/community-testing-x86_64/keys/
----------+
PKGBUILD | 26 ++++++++++++++++++++++++++
1 file changed, 26 insertions(+)
Copied: frei0r-plugins/repos/community-testing-x86_64/PKGBUILD (from rev
1378368, frei0r-plugins/trunk/PKGBUILD)
===================================================================
--- community-testing-x86_64/PKGBUILD (rev 0)
+++ community-testing-x86_64/PKGBUILD 2023-01-05 20:41:50 UTC (rev 1378369)
@@ -0,0 +1,26 @@
+# Maintainer: Balló György <ballogyor+arch at gmail dot com>
+# Contributor: Sergej Pupykin <[email protected]>
+
+pkgname=frei0r-plugins
+pkgver=1.8.0
+pkgrel=3
+pkgdesc='Minimalistic plugin API for video effects'
+arch=('x86_64')
+url='https://frei0r.dyne.org/'
+license=('GPL2')
+depends=('cairo' 'gavl')
+makedepends=('cmake' 'doxygen' 'ninja' 'opencv')
+optdepends=('opencv: for facebl0r and facedetect plugins')
+source=("https://files.dyne.org/frei0r/$pkgname-$pkgver.tar.gz"{,.asc})
+validpgpkeys=('6113D89CA825C5CEDD02C87273B35DA54ACB7D10') # Denis Roio
(Jaromil)
+sha256sums=('45a28655caf057227b442b800ca3899e93490515c81e212d219fdf4a7613f5c4'
+ 'SKIP')
+
+build() {
+ cmake -S $pkgname-$pkgver -B build -G Ninja -DCMAKE_INSTALL_PREFIX='/usr'
+ cmake --build build
+}
+
+package() {
+ DESTDIR="$pkgdir" cmake --install build
+}