diff options
author | coadde [Márcio Alexandre Silva Delgado] <coadde@parabola.nu> | 2015-12-01 18:37:28 -0300 |
---|---|---|
committer | coadde [Márcio Alexandre Silva Delgado] <coadde@parabola.nu> | 2015-12-01 18:37:28 -0300 |
commit | a9e2d7743d011a5502b37dac0ce9fe8acc4b5869 (patch) | |
tree | 55dd29d8d96f0a26a17d358b75a623eba6928ad9 /pcr/mypaint-gegl-git/PKGBUILD | |
parent | df850b65e069fcb9fcd54395f789fd7e136ebe1e (diff) | |
download | abslibre-a9e2d7743d011a5502b37dac0ce9fe8acc4b5869.tar.gz abslibre-a9e2d7743d011a5502b37dac0ce9fe8acc4b5869.tar.bz2 abslibre-a9e2d7743d011a5502b37dac0ce9fe8acc4b5869.zip |
mypaint-gegl-git: add pkg to [pcr]
Diffstat (limited to 'pcr/mypaint-gegl-git/PKGBUILD')
-rw-r--r-- | pcr/mypaint-gegl-git/PKGBUILD | 71 |
1 files changed, 71 insertions, 0 deletions
diff --git a/pcr/mypaint-gegl-git/PKGBUILD b/pcr/mypaint-gegl-git/PKGBUILD new file mode 100644 index 000000000..261ef7053 --- /dev/null +++ b/pcr/mypaint-gegl-git/PKGBUILD @@ -0,0 +1,71 @@ +# Maintainer: Márcio Silva <coadde@parabola.nu> +# Maintainer (Arch): Sergej Pupykin <pupykin.s+arch@gmail.com> +# Contributor (Arch): Jon Nordby <jononor@gmail.com> + +_pkgname=mypaint +pkgname=('mypaint-gegl-git' 'libmypaint-gegl-git') +pkgver=r4141.ad19153 +pkgrel=1 +pkgdesc="A fast and easy painting application for digital painters, with brush dynamics and GEGL support" +arch=('i686' 'x86_64' 'armv7h') +url="http://mypaint.intilinux.com/" +license=('GPL' 'LGPL') +depends=('python2-gobject' 'python2-numpy' 'gtk3' 'json-c' 'lcms2' 'gegl') +makedepends=('scons>=0.97' 'swig>=1.3.39' 'git') +install=mypaint.install +source=($_pkgname-$pkgver::git+https://github.com/$_pkgname/$_pkgname + brushlib::git+https://github.com/$_pkgname/lib$_pkgname) +md5sums=('SKIP' + 'SKIP') + +pkgver() { + cd "${srcdir}/${_pkgname}-${pkgver}" + printf "r%s.%s" "$(git rev-list --count HEAD)" "$(git rev-parse --short HEAD)" +} + +prepare() { + cd $srcdir/$_pkgname-$pkgver + + git submodule init + git config submodule.'brushlib'.url "${srcdir}/brushlib" + git submodule update + + # python2 fix + sed -i 's_python generate.py_python2 generate.py_' brushlib/SConscript + for file in $(find . -name '*.py' -print); do + sed -i 's_^#!.*/usr/bin/python_#!/usr/bin/python2_' $file + sed -i 's_^#!.*/usr/bin/env.*python_#!/usr/bin/env python2_' $file + done +} + +package_mypaint-gegl-git() { + depends=('python2-gobject' 'python2-numpy' 'gtk3' 'lcms2' 'libmypaint-gegl-git') + provides=("${_pkgname}") + conflicts=("${_pkgname}") + + cd $srcdir/$_pkgname-$pkgver + scons prefix="$pkgdir"/usr use_sharedlib=yes enable_gegl=yes install + + # separate files to libmypaint package + install -vdm 0755 $srcdir/lib$_pkgname-fakeinstall/usr/{lib,share} + mv -v $pkgdir/usr/include $srcdir/lib$_pkgname-fakeinstall/usr + mv -v $pkgdir/usr/lib/lib$_pkgname*.so $srcdir/lib$_pkgname-fakeinstall/usr/lib + mv -v $pkgdir/usr/lib/pkgconfig $srcdir/lib$_pkgname-fakeinstall/usr/lib + mv -v $pkgdir/usr/share/lib$_pkgname $srcdir/lib$_pkgname-fakeinstall/usr/share + # mypaint needs libmypaint-tests.so + install -vDm 0644 brushlib/lib$_pkgname-tests.so $srcdir/lib$_pkgname-fakeinstall/usr/lib +} + +package_libmypaint-gegl-git() { + _pkgver() { + cd "${srcdir}/brushlib" + printf "r%s.%s" "$(git rev-list --count HEAD)" "$(git rev-parse --short HEAD)" + } + pkgver=$(_pkgver) + pkgdesc="A library for making brushstrokes, with GEGL support" + depends=('python2' 'gcc-libs' 'glib2' 'json-c' 'gegl') + provides=("lib${_pkgname}") + conflicts=("lib${_pkgname}") + + mv -v $srcdir/lib$_pkgname-fakeinstall/* $pkgdir +} |