diff options
| author | kj-sh604 | 2025-03-18 13:03:20 -0400 |
|---|---|---|
| committer | kj-sh604 | 2025-03-18 13:03:20 -0400 |
| commit | 5294aa8684fd1661b00e8d4692595f9a72d9d94a (patch) | |
| tree | f71ae260b0fb8ca259e889aecf85d697b530b650 | |
| parent | b12c6b8ecae432386d40ea15f2874d98f44a8ab7 (diff) | |
feat: add `batcher` GIMP plug-in
| -rw-r--r-- | gimp-batcher-kj_sh604/.SRCINFO | 16 | ||||
| -rw-r--r-- | gimp-batcher-kj_sh604/.gitignore | 4 | ||||
| -rw-r--r-- | gimp-batcher-kj_sh604/PKGBUILD | 25 |
3 files changed, 45 insertions, 0 deletions
diff --git a/gimp-batcher-kj_sh604/.SRCINFO b/gimp-batcher-kj_sh604/.SRCINFO new file mode 100644 index 0000000..e29db29 --- /dev/null +++ b/gimp-batcher-kj_sh604/.SRCINFO @@ -0,0 +1,16 @@ +pkgbase = gimp-batcher-kj_sh604 + pkgdesc = A batch processing plugin for the new generation of GIMP + pkgver = 1.0_RC4 + pkgrel = 1 + url = https://github.com/kamilburda/batcher + arch = i686 + arch = x86_64 + license = BSD + makedepends = unzip + depends = gimp>=3.0 + depends = python>=3.7 + depends = python-gobject + source = https://github.com/kamilburda/batcher/releases/download/1.0-RC4/batcher-1.0-RC4.zip + sha256sums = d214d498637a6632a0e5d95d3c6caea8aec4009a8ad7b624619d0d021c3200fc + +pkgname = gimp-batcher-kj_sh604 diff --git a/gimp-batcher-kj_sh604/.gitignore b/gimp-batcher-kj_sh604/.gitignore new file mode 100644 index 0000000..3e06f73 --- /dev/null +++ b/gimp-batcher-kj_sh604/.gitignore @@ -0,0 +1,4 @@ +pkg/ +src/ +*.zip* +*.tar* diff --git a/gimp-batcher-kj_sh604/PKGBUILD b/gimp-batcher-kj_sh604/PKGBUILD new file mode 100644 index 0000000..8e7d9b4 --- /dev/null +++ b/gimp-batcher-kj_sh604/PKGBUILD @@ -0,0 +1,25 @@ +# Maintainer: kj_sh604 <406hs_jk@proton.me> + +pkgname=gimp-batcher-kj_sh604 +pkgver=1.0_RC4 +pkgrel=1 +pkgdesc="A batch processing plugin for the new generation of GIMP" +arch=('i686' 'x86_64') +url="https://github.com/kamilburda/batcher" +license=('BSD') +depends=('gimp>=3.0' 'python>=3.7' 'python-gobject') +makedepends=('unzip') +# convert pkgver: replace underscores with hyphens for url usage +_sourcever=${pkgver//_/-} +source=("https://github.com/kamilburda/batcher/releases/download/${_sourcever}/batcher-${_sourcever}.zip") +sha256sums=('d214d498637a6632a0e5d95d3c6caea8aec4009a8ad7b624619d0d021c3200fc') + +prepare() { + cd "$srcdir" + unzip "batcher-${_sourcever}.zip" -d batcher +} + +package() { + install -d "$pkgdir/usr/lib/gimp/3.0/plug-ins" + cp -r "$srcdir/batcher/batcher" "$pkgdir/usr/lib/gimp/3.0/plug-ins/" +} |
