void-packages/srcpkgs/gmic/template
Alessio Sergi 9803698c38 gmic: unbreak
- Remove cross build test. gmic is nocross, so it doesn't make sense.
- Remove zart build option. As of now, gmic cannot be built w/o zart
  (unless patching the Makefile), so the build option doesn't work at
  all.
- Fix broken depends in subpackages.
- Restore gmic-zart symlink, was erroneously removed with commit 01bbc54.

The package is less a mess then it was, but more work is probably
needed though.
2016-05-09 02:37:44 +02:00

46 lines
1.2 KiB
Bash

# Template file for 'gmic'
pkgname=gmic
version=1.6.9
revision=2
hostmakedepends="pkg-config gimp"
makedepends="fftw-devel libopenexr-devel MesaLib-devel libopencv-devel
libgomp-devel libpng-devel libjpeg-turbo-devel tiff-devel libcurl-devel
gtk+-devel gimp-devel qt-devel"
short_desc="GREYC's Magic for Image Computing (image processing framework)"
maintainer="Jakub Skrzypnik <jot.skrzyp@gmail.com>"
license="CeCILL"
homepage="http://gmic.eu/"
distfiles="http://gmic.eu/files/source/gmic_${version}.tar.gz"
checksum=8b836b4ac02a2d3963384951b6e00f2d8e19ede0b49ee93b041ef227cf9dd794
do_build() {
sed -i 's|/etc/bash_completion.d|/usr/share/bash-completion/completions|g' src/Makefile
make -C src all
}
do_install() {
make -C src install DESTDIR="${DESTDIR}" USR="/usr"
vlicense COPYING
}
gmic-gimp_package() {
short_desc+=" - GIMP plugin"
depends="gimp ${sourcepkg}>=${version}_${revision}"
pkg_install() {
vmove usr/lib/gimp
}
}
gmic-zart_package() {
short_desc+=" - ZArt tool"
depends="${sourcepkg}>=${version}_${revision}"
pkg_install() {
vmove usr/bin/zart
}
}
gmic-devel_package() {
short_desc+=" - development files"
depends="${sourcepkg}>=${version}_${revision}"
pkg_install() {
vmove usr/include
vmove usr/lib/*.so
}
}