blob: d5c1d33241f169ce132dc16205b713a38768981f (
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
34
|
# Maintainer: Dmytro Kostiuchenko <edio@archlinux.us>
_name=gimp-plugin-lqr
_srcname=gimp-lqr-plugin
pkgname=${_name}-git
pkgver=v0.7.0.r14.g61d1f07
pkgrel=2
pkgdesc="GIMP plugin providing Liquid Rescale"
arch=('x86_64')
url="https://liquidrescale.wikidot.com/"
license=('GPL')
provides=('gimp-plugin-lqr')
conflicts=('gimp-plugin-lqr')
depends=('gimp' 'liblqr')
makedepends=('intltool' 'patch')
source=(git+https://github.com/carlobaldassi/gimp-lqr-plugin.git)
md5sums=('SKIP')
pkgver() {
cd "$_srcname"
git describe --long | sed 's/\([^-]*-g\)/r\1/;s/-/./g'
}
build() {
cd "$srcdir"/"$_srcname"
./configure --prefix=/usr
make
}
package() {
cd "$srcdir"/"$_srcname"
make DESTDIR="$pkgdir" install
}
|