[arch-commits] Commit in frei0r-plugins/repos/community-x86_64 (PKGBUILD PKGBUILD)

Antonio Rojas arojas at gemini.archlinux.org
Sun Feb 6 14:35:09 UTC 2022


    Date: Sunday, February 6, 2022 @ 14:35:08
  Author: arojas
Revision: 1127125

archrelease: copy trunk to community-x86_64

Added:
  frei0r-plugins/repos/community-x86_64/PKGBUILD
    (from rev 1127124, frei0r-plugins/trunk/PKGBUILD)
Deleted:
  frei0r-plugins/repos/community-x86_64/PKGBUILD

----------+
 PKGBUILD |   74 ++++++++++++++++++++++++++++++++++++-------------------------
 1 file changed, 44 insertions(+), 30 deletions(-)

Deleted: PKGBUILD
===================================================================
--- PKGBUILD	2022-02-06 14:35:02 UTC (rev 1127124)
+++ PKGBUILD	2022-02-06 14:35:08 UTC (rev 1127125)
@@ -1,30 +0,0 @@
-# Maintainer: Balló György <ballogyor+arch at gmail dot com>
-# Contributor: Sergej Pupykin <pupykin.s+arch at gmail.com>
-
-pkgname=frei0r-plugins
-pkgver=1.7.0
-pkgrel=1
-pkgdesc="Minimalistic plugin API for video effects"
-arch=('x86_64')
-url="https://frei0r.dyne.org/"
-license=('GPL')
-depends=('cairo' 'gavl')
-makedepends=('cmake' 'doxygen') # opencv - not compatible with 4.0
-#optdepends=('opencv: for facebl0r and facedetect plugins')
-source=(https://files.dyne.org/frei0r/$pkgname-$pkgver.tar.gz{,.asc})
-validpgpkeys=('6113D89CA825C5CEDD02C87273B35DA54ACB7D10') # Denis Roio (Jaromil)
-sha256sums=('1b1ff8f0f9bc23eed724e94e9a7c1d8f0244bfe33424bb4fe68e6460c088523a'
-            'SKIP')
-
-build() {
-  mkdir -p build
-  cd build
-  cmake ../$pkgname-$pkgver \
-    -DCMAKE_INSTALL_PREFIX=/usr
-  make
-}
-
-package() {
-  cd build
-  make DESTDIR="$pkgdir" install
-}

Copied: frei0r-plugins/repos/community-x86_64/PKGBUILD (from rev 1127124, frei0r-plugins/trunk/PKGBUILD)
===================================================================
--- PKGBUILD	                        (rev 0)
+++ PKGBUILD	2022-02-06 14:35:08 UTC (rev 1127125)
@@ -0,0 +1,44 @@
+# Maintainer: Balló György <ballogyor+arch at gmail dot com>
+# Contributor: Sergej Pupykin <pupykin.s+arch at gmail.com>
+
+pkgname=frei0r-plugins
+pkgver=1.7.0
+pkgrel=2
+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 - not compatible with 4.0
+#optdepends=('opencv: for facebl0r and facedetect plugins')
+source=("https://files.dyne.org/frei0r/$pkgname-$pkgver.tar.gz"{,.asc}
+         https://github.com/dyne/frei0r/commit/e48da90c.patch
+         https://github.com/dyne/frei0r/commit/9e79ba02.patch
+         https://github.com/dyne/frei0r/commit/aa7ccf8e.patch
+         https://github.com/dyne/frei0r/commit/b8d4e059.patch
+         https://github.com/dyne/frei0r/commit/febd7387.patch)
+validpgpkeys=('6113D89CA825C5CEDD02C87273B35DA54ACB7D10') # Denis Roio (Jaromil)
+sha256sums=('1b1ff8f0f9bc23eed724e94e9a7c1d8f0244bfe33424bb4fe68e6460c088523a'
+            'SKIP'
+            '7e7db9b0d8d1b6d4a4a16fd586012e9b820933a7dfc163a1e231976d9e88b203'
+            'b4649a5251eb39ad8e7d7990d716247190cc3ddf2028a119f7805f3683d2d0f7'
+            '41fb30e2dcfefe96aca544ffdd4a94c996adc7397fec44ee6cd6d8a2506a25ae'
+            '0997a05a485ac19b1b0053ebf6c624a90b0904f69b04725b305601f2916efc2d'
+            'b8151ed31d3003a4109ba5ec15600c182b894ee1b4f2db9f3226dc17c0e48d95')
+
+prepare() {
+  cd $pkgname-$pkgver
+# Backport fixes for kdenlive
+  for _commit in e48da90c 9e79ba02 aa7ccf8e b8d4e059 febd7387; do
+    patch -p1 -i ../$_commit.patch
+  done
+}
+
+build() {
+  cmake -S $pkgname-$pkgver -B build -G Ninja -DCMAKE_INSTALL_PREFIX='/usr'
+  cmake --build build
+}
+
+package() {
+  DESTDIR="$pkgdir" cmake --install build
+}



More information about the arch-commits mailing list