vigra: update to 1.10.0, split documention

This commit is contained in:
Chaoting Liu 2016-02-27 12:11:54 +00:00
parent 2ff8ee1c61
commit 94adedae26

View File

@ -1,41 +1,61 @@
#
# Chakra Packages, part of chakra-project.org
#
# maintainer abveritas[at]chakra-project[dot]org>
pkgname=vigra
pkgver=1.9.0
pkgbase=vigra
pkgname=('vigra' 'vigra-doc')
pkgver=1.10.0
pkgrel=1
pkgdesc="Computer vision library"
arch=('x86_64')
url="http://hci.iwr.uni-heidelberg.de/vigra/"
license=('custom:MIT')
depends=('libpng' 'libtiff' 'gcc-libs' 'sh' 'hdf5' 'fftw')
makedepends=('cmake' 'python2-nose' 'doxygen' 'python-sphinx' 'boost' 'python-numpy')
optdepends=('python2: for python bindings'
'boost-libs: for python bindings')
options=('!libtool')
source=("http://kogs-www.informatik.uni-hamburg.de/~koethe/vigra/${pkgname}-${pkgver}-src.tar.gz")
sha1sums=('6e4981f4ce75932ec62df6523f577c327f885ba0')
makedepends=( # runtime deps
'libpng' 'libtiff' '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-with-docu.tar.gz")
md5sums=('85e2968e4ee5f9541b5dd8b3fb9cc433')
build() {
cd "${srcdir}"/${pkgname}-${pkgver}
cmake -DCMAKE_INSTALL_PREFIX=/usr \
-DPYTHON_EXECUTABLE=/usr/bin/python2 \
-DWITH_VIGRANUMPY=0 \
-DWITH_VIGRANUMPY=1 \
-DDOCINSTALL=share/doc
make
}
check() {
cd "${srcdir}"/${pkgname}-${pkgver}
make -k check || /bin/true
}
#check() {
# cd "${srcdir}"/${pkgname}-${pkgver}
# make -k check
#}
# Currently failed due to limitation of buildsystem
package_vigra() {
depends=('libpng' 'libtiff' 'hdf5' 'fftw')
optdepends=('python2: for python bindings'
'boost-libs: for python bindings')
package() {
cd "${srcdir}"/${pkgname}-${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+=" - documentation and examples"
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
}