core/vigra/PKGBUILD
2017-10-26 21:34:48 +02:00

61 lines
1.7 KiB
Bash

pkgbase=vigra
pkgname=('vigra' 'vigra-doc')
pkgver=1.11.0
pkgrel=2
arch=('x86_64')
url="http://hci.iwr.uni-heidelberg.de/vigra/"
license=('custom:MIT')
makedepends=(# runtime deps
'libpng' 'libtiff' 'openexr' 'gcc-libs' 'sh' 'hdf5' 'fftw'
# buildtime deps
'cmake' 'python2-nose' 'doxygen' 'python2-sphinx' 'boost' 'python2-numpy' 'python3-sphinx')
source=("https://github.com/ukoethe/vigra/releases/download/Version-${pkgver//./-}/${pkgname}-${pkgver}-src.tar.gz")
md5sums=('7f80d289e03a2f2e8c8e85f3ff29d988')
build() {
cd "${srcdir}"/${pkgbase}-${pkgver}
cmake -DCMAKE_INSTALL_PREFIX=/usr \
-DPYTHON_EXECUTABLE=/usr/bin/python2 \
-DWITH_OPENEXR=true \
-DWITH_VIGRANUMPY=1 \
-DDOCINSTALL=share/doc
make
}
#check() {
# cd "${srcdir}"/${pkgname}-${pkgver}
# make -j1 -k check #|| /bin/true # i686 fails
#}
package_vigra() {
pkgdesc="Computer vision library"
depends=('libpng' 'libtiff' 'openexr' 'gcc-libs' 'sh' 'hdf5' 'fftw')
optdepends=('python2: for python bindings'
'boost-libs: for python bindings')
cd "${srcdir}"/${pkgbase}-${pkgver}
make DESTDIR="${pkgdir}" install
# license
install -D -m644 LICENSE.txt "${pkgdir}"/usr/share/licenses/${pkgname}/LICENSE
# remove doc
rm -rf "${pkgdir}"/usr/share/doc
#fix shebang for python2
sed -i 's|python$|python2|' "$pkgdir"/usr/bin/vigra-config
}
package_vigra-doc() {
pkgdesc="Computer vision library - documentation and examples"
#depends=('vigra')
#arch=('any')
cd "${srcdir}"/${pkgbase}-${pkgver}
make DESTDIR="${pkgdir}" install
# cleanup
rm -rf "${pkgdir}"/usr/{bin,include,lib}
# license
install -D -m644 LICENSE.txt "${pkgdir}"/usr/share/licenses/${pkgname}/LICENSE
}