blob: 5e5eb44f50134728942cb2db21d6f220596d19ee (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
# Maintainer: Lex Black (autumn-wind at web.de)
# Contributor: andre.vmatos
_pkgname=resynthesizer
pkgname=gimp-plugin-$_pkgname-git
pkgver=3.0.r3.g32e3962
pkgrel=1
pkgdesc="Suite of gimp plugins for texture synthesis (like heal-selection). Git-Version"
arch=('i686' 'x86_64')
url="https://github.com/bootchk/resynthesizer"
license=('GPL-3.0-only')
depends=('gimp')
makedepends=('git' 'meson')
conflicts=('gimp-plugin-resynthesizer' 'gimp-resynth' 'gimp-resynth-git')
provides=("${pkgname/-git/}=3.0")
options=('!emptydirs')
source=('git+https://github.com/bootchk/resynthesizer#branch=resynthesizer3')
md5sums=('SKIP')
pkgver() {
cd $_pkgname
git describe --long --tags | sed 's/\([^-]*-g\)/r\1/;s/-/./g;s/^v//'
}
build() {
arch-meson ${_pkgname} build
meson compile -C build
}
package() {
meson install -C build --destdir "${pkgdir}"
}
|