* update frei0r-plugins to 2.3.3-2.2

This commit is contained in:
Alexander Baldeck 2024-11-28 13:11:48 +01:00
parent ebc1a22f28
commit 7203316a76
3 changed files with 32 additions and 17 deletions

View File

@ -1,9 +1,13 @@
pkgbase = frei0r-plugins pkgbase = frei0r-plugins
pkgdesc = Collection of video effect plugins pkgdesc = Collection of video effect plugins
pkgver = 2.3.3 pkgver = 2.3.3
pkgrel = 2 pkgrel = 2.2
url = https://frei0r.dyne.org/ url = https://frei0r.dyne.org/
arch = x86_64 arch = x86_64
arch = powerpc64le
arch = powerpc64
arch = powerpc
arch = riscv64
license = GPL-2.0-or-later license = GPL-2.0-or-later
makedepends = cairo makedepends = cairo
makedepends = cmake makedepends = cmake
@ -18,6 +22,6 @@ pkgbase = frei0r-plugins
optdepends = opencv: facebl0r and facedetect plugins optdepends = opencv: facebl0r and facedetect plugins
source = git+https://github.com/dyne/frei0r#tag=v2.3.3 source = git+https://github.com/dyne/frei0r#tag=v2.3.3
validpgpkeys = 6113D89CA825C5CEDD02C87273B35DA54ACB7D10 validpgpkeys = 6113D89CA825C5CEDD02C87273B35DA54ACB7D10
sha256sums = 8d0f2e8386ff070eaccc6764e4240b8da7cc67ea2899a73e94e11a5c5f21944c b2sums = 543c512c8ba74098c1a78e827f82284170a555037e1b259af69062497f78881bed152dee4b1f1261096b0b0c23bb42c2e04288526c53a92e262de3526df43d3d
pkgname = frei0r-plugins pkgname = frei0r-plugins

View File

@ -1,5 +1,4 @@
[frei0r-plugins] [frei0r-plugins]
source = 'github' source = "git"
github = 'dyne/frei0r' git = "https://github.com/dyne/frei0r.git"
use_max_tag = true prefix = "v"
prefix = 'v'

View File

@ -4,23 +4,35 @@
pkgname=frei0r-plugins pkgname=frei0r-plugins
pkgver=2.3.3 pkgver=2.3.3
pkgrel=2.1 pkgrel=2.2
pkgdesc='Collection of video effect plugins' pkgdesc='Collection of video effect plugins'
arch=(x86_64 powerpc64le powerpc64 powerpc riscv64) arch=(x86_64 powerpc64le powerpc64 powerpc riscv64)
url='https://frei0r.dyne.org/' url='https://frei0r.dyne.org/'
license=('GPL-2.0-or-later') license=(GPL-2.0-or-later)
depends=('gcc-libs' 'glibc') depends=(
makedepends=('cairo' 'cmake' 'gavl' 'git' 'ninja' 'opencv') gcc-libs
optdepends=('cairo: cairoaffineblend, cairoblend, cairogradient and cairoimagegrid plugins' glibc
'gavl: rgbparade, scale0tilt and vectorscope plugins' )
'opencv: facebl0r and facedetect plugins') makedepends=(
source=(git+https://github.com/dyne/frei0r#tag=v$pkgver) cairo
validpgpkeys=('6113D89CA825C5CEDD02C87273B35DA54ACB7D10') # Denis Roio (Jaromil) cmake
sha256sums=('8d0f2e8386ff070eaccc6764e4240b8da7cc67ea2899a73e94e11a5c5f21944c') gavl
git
ninja
opencv
)
optdepends=(
'cairo: cairoaffineblend, cairoblend, cairogradient and cairoimagegrid plugins'
'gavl: rgbparade, scale0tilt and vectorscope plugins'
'opencv: facebl0r and facedetect plugins'
)
source=("git+https://github.com/dyne/frei0r#tag=v$pkgver")
b2sums=(543c512c8ba74098c1a78e827f82284170a555037e1b259af69062497f78881bed152dee4b1f1261096b0b0c23bb42c2e04288526c53a92e262de3526df43d3d)
validpgpkeys=(6113D89CA825C5CEDD02C87273B35DA54ACB7D10) # Denis Roio (Jaromil)
build() { build() {
cmake -S frei0r -B build -G Ninja \ cmake -S frei0r -B build -G Ninja \
-DCMAKE_INSTALL_PREFIX='/usr' -D CMAKE_INSTALL_PREFIX=/usr
cmake --build build cmake --build build
} }