Package Details: gimp-plugin-fourier-git 0.4.4.r0.g35e2cfe-1

Git Clone URL: https://aur.archlinux.org/gimp-plugin-fourier-git.git (read-only, click to copy)
Package Base: gimp-plugin-fourier-git
Description: Fourier plugin for GIMP
Upstream URL: https://github.com/rpeyron/plugin-gimp-fourier
Licenses: GPL
Submitter: Matr1x-101
Maintainer: xAsh
Last Packager: Matr1x-101
Votes: 1
Popularity: 0.093992
First Submitted: 2022-11-25 12:21 (UTC)
Last Updated: 2022-11-25 12:21 (UTC)

Dependencies (3)

Required by (0)

Sources (1)

Latest Comments

JonnyRobbie commented on 2024-08-12 14:45 (UTC) (edited on 2024-08-12 14:45 (UTC) by JonnyRobbie)

To get a support for gimp3 (gimp-2.99), you need to switch branch and add a configure flag. PKGBUILD patch:

diff --git a/PKGBUILD b/PKGBUILD
index ad5aa0a..8546ef4 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -1,13 +1,13 @@
 # Maintainer <thysupremematrix a-t tuta d_o_t io>
 pkgname=gimp-plugin-fourier-git
-pkgver=0.4.4.r0.g35e2cfe
+pkgver=0.4.5.r27.g3ee5462
 pkgrel=1
 pkgdesc="Fourier plugin for GIMP"
 arch=('x86_64')
 url="https://github.com/rpeyron/plugin-gimp-fourier"
 license=('GPL')
 depends=('git' 'gimp' 'fftw')
-source=($pkgname::git+https://github.com/rpeyron/plugin-gimp-fourier)
+source=($pkgname::git+https://github.com/rpeyron/plugin-gimp-fourier#branch=gimp2.99)
 md5sums=('SKIP')

 pkgver() {
@@ -23,7 +23,7 @@ prepare() {

 build() {
        cd $pkgname
-       ./configure
+       ./configure --enable-gimp3-fourier
        make
 }