blob: 31ba308564d1e0233a911db07ad72fb54b1ca074 (
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
|
# Maintainer: Márcio Silva <coadde@parabola.nu>
# based of mypaint
_pkgname=mypaint
pkgname=mypaint-gegl
pkgver=1.2.0
pkgrel=3.2
pkgdesc="A fast and easy painting application for digital painters, with brush dynamics and GEGL support"
arch=('i686' 'x86_64' 'armv7h')
url="http://mypaint.org/"
license=('GPL' 'LGPL')
depends=('pygtk' 'python2-numpy' 'protobuf-python' 'python2' 'json-c'
'lcms2' 'python2-gobject' 'gtk3' 'gegl')
makedepends=('scons>=0.97' 'swig>=1.3.39' 'git')
provides=("${_pkgname}")
conflicts=("${_pkgname}" "lib${_pkgname}")
source=(${_pkgname}-${pkgver}::git+https://github.com/${_pkgname}/${_pkgname}.git#tag=v${pkgver}
https://github.com/${_pkgname}/${_pkgname}/commit/c03602f3d5456d59fccfc8ad7d41c8c6f1a6d593.patch
lib${_pkgname}.git::git+https://github.com/${_pkgname}/lib${_pkgname}.git)
md5sums=('SKIP'
'e196d8ea9eb9e939118a17c04678a69a'
'SKIP')
prepare() {
cd $srcdir/$_pkgname-$pkgver
patch -p1 <$srcdir/c03602f3d5456d59fccfc8ad7d41c8c6f1a6d593.patch
# update libmypaint
rm -r brushlib
git submodule init
git config submodule.'libmypaint'.url "${srcdir}/lib${_pkgname}.git"
git submodule update
}
package() {
cd $srcdir/$_pkgname-$pkgver
scons prefix="$pkgdir"/usr use_sharedlib=yes enable_gegl=yes install
# fixing headers files, it's needed for GIMP 2.9 and above package
install -vdm 0755 $pkgdir/usr/include/glib
ln -vs lib$_pkgname-gegl/$_pkgname-gegl-surface.h $pkgdir/usr/include
ln -vs ../lib$_pkgname/glib/$_pkgname-brush.h $pkgdir/usr/include/glib
ln -vs ../lib$_pkgname/glib/$_pkgname-gegl-glib.h $pkgdir/usr/include/glib
ln -vs lib$_pkgname/$_pkgname-brush-settings-gen.h $pkgdir/usr/include
ln -vs lib$_pkgname/$_pkgname-brush-settings.h $pkgdir/usr/include
ln -vs lib$_pkgname/$_pkgname-brush.h $pkgdir/usr/include
ln -vs lib$_pkgname/$_pkgname-config.h $pkgdir/usr/include
ln -vs lib$_pkgname/$_pkgname-fixed-tiled-surface.h $pkgdir/usr/include
ln -vs lib$_pkgname/$_pkgname-glib-compat.h $pkgdir/usr/include
ln -vs lib$_pkgname/$_pkgname-rectangle.h $pkgdir/usr/include
ln -vs lib$_pkgname/$_pkgname-surface.h $pkgdir/usr/include
ln -vs lib$_pkgname/$_pkgname-tiled-surface.h $pkgdir/usr/include
# add libmypaint-tests.so, it's needed for shared libraries
install -vDm 0644 brushlib/lib$_pkgname-tests.so $pkgdir/usr/lib
}
|