blob: 58c8149606b2d5f737685a72289233e9329e5e4b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
# Maintainer: begin-theadventure <begin-thecontact.ncncb at dralias dot com>
pkgname=slos-gimpainter
pkgver=20220429
pkgrel=1
arch=('any')
pkgdesc='A brush package for GIMP 2.10.20 or Later'
url="https://github.com/SenlinOS/SLOS-GIMPainter"
license=('MIT')
depends=('gimp')
_commit=c2550f554dc9e59da343a5fee4e406afcb51c1f1
source=("20220429.zip::https://github.com/SenlinOS/SLOS-GIMPainter/archive/$_commit.zip")
sha256sums=('e828a75aafc3de56fad2091f65074c079ed1abe93827017fde6ead067d5b3c06')
package() {
mkdir -p "$pkgdir/usr/share/gimp/2.0"
cd SLOS-GIMPainter-$_commit
install -Dm644 LICENSE -t "$pkgdir/usr/share/licenses/$pkgname"
mv {brushes,dynamics,tool-presets} "$pkgdir/usr/share/gimp/2.0"
}
|