PKGBUILDs/community/vigra/PKGBUILD

80 lines
2.5 KiB
Bash
Raw Normal View History

2018-01-06 21:05:54 +00:00
# Maintainer: Bruno Pagani <archange@archlinux.org>
# Contributor: AndyRTR <andyrtr@archlinux.org>
2016-07-07 01:31:22 +00:00
# Contributor: Lukas Jirkovsky <l.jirkovsky@gmail.com>
# ALARM: Kevin Mihelich <kevin@archlinuxarm.org>
# - build v5 with -DCMAKE_CXX_FLAGS=-std=c++11 -DWITH_BOOST_THREAD=1 to fix FTBFS
pkgbase=vigra
pkgname=('vigra' 'vigra-doc')
2017-05-30 23:37:48 +00:00
pkgver=1.11.1
2018-09-21 19:06:07 +00:00
pkgrel=13
2018-01-06 21:05:54 +00:00
pkgdesc="Computer vision library"
arch=('x86_64')
2017-05-30 23:37:48 +00:00
url="https://ukoethe.github.io/vigra/"
2016-07-07 01:31:22 +00:00
license=('custom:MIT')
makedepends=(# runtime deps
'libpng' 'libtiff' 'openexr' 'gcc-libs' 'sh' 'hdf5' 'fftw'
2018-06-08 05:07:09 +00:00
# additional makedeps
2018-03-13 00:09:36 +00:00
'cmake' 'boost' 'python-numpy')
checkdepends=('python-nose')
2018-06-08 05:07:09 +00:00
source=("https://github.com/ukoethe/vigra/releases/download/Version-${pkgver//./-}/vigra-${pkgver}-src.tar.gz"
2018-08-06 13:17:05 +00:00
'fix-incorrect-template-parameter-type.patch' 'py3.7.diff')
2018-06-08 05:07:09 +00:00
sha256sums=('a5564e1083f6af6a885431c1ee718bad77d11f117198b277557f8558fa461aaf'
2018-08-06 13:17:05 +00:00
'f151f902483dfa2b1f3d431f54bb161300cf184158c9f416fa653d19ab363cc4'
'8fcdcce50c377be44387cbd4a001dadf5e03b32483de55c05a359c887e95a05b')
2016-07-07 01:31:22 +00:00
2018-01-06 21:05:54 +00:00
prepare() {
mkdir -p build
2018-06-08 05:07:09 +00:00
cd ${pkgbase}-${pkgver}
# https://github.com/ukoethe/vigra/issues/414
patch -Np1 -i ../fix-incorrect-template-parameter-type.patch
2018-08-06 13:17:05 +00:00
# python 3.7 compat
patch -Np1 -i ../py3.7.diff
2018-01-06 21:05:54 +00:00
}
2016-07-07 01:31:22 +00:00
build() {
2018-01-06 21:05:54 +00:00
cd build
cmake ../${pkgbase}-${pkgver} \
-DCMAKE_INSTALL_PREFIX=/usr \
2016-07-07 01:31:22 +00:00
-DPYTHON_EXECUTABLE=/usr/bin/python \
-DWITH_OPENEXR=true \
-DWITH_VIGRANUMPY=1 \
-DDOCINSTALL=share/doc \
$([ $CARCH == arm ] && echo "-DCMAKE_CXX_FLAGS=-std=c++11 -DWITH_BOOST_THREAD=1")
make
}
2018-01-06 21:05:54 +00:00
check() {
cd build
make -j1 -k check || warning "Tests failed" # https://github.com/ukoethe/vigra/issues/409
}
2016-07-07 01:31:22 +00:00
package_vigra() {
pkgdesc="Computer vision library"
depends=('libpng' 'libtiff' 'openexr' 'gcc-libs' 'sh' 'hdf5' 'fftw')
optdepends=('python: for python bindings'
'boost-libs: for python bindings')
2018-01-06 21:05:54 +00:00
cd build
2016-07-07 01:31:22 +00:00
make DESTDIR="${pkgdir}" install
2018-01-06 21:05:54 +00:00
2018-03-13 00:09:36 +00:00
install -Dm644 "${srcdir}"/${pkgbase}-${pkgver}/LICENSE.txt "${pkgdir}"/usr/share/licenses/${pkgname}/LICENSE
2016-07-07 01:31:22 +00:00
2018-01-06 21:05:54 +00:00
# Remove doc
2016-07-07 01:31:22 +00:00
rm -rf "${pkgdir}"/usr/share/doc
}
package_vigra-doc() {
pkgdesc="Computer vision library - documentation and examples"
2018-01-06 21:05:54 +00:00
#arch=('any') # Not supported for now, maybe later
2016-07-07 01:31:22 +00:00
2018-01-06 21:05:54 +00:00
cd build
2016-07-07 01:31:22 +00:00
make DESTDIR="${pkgdir}" install
2018-01-06 21:05:54 +00:00
# Remove vigra package content
2016-07-07 01:31:22 +00:00
rm -rf "${pkgdir}"/usr/{bin,include,lib}
2018-03-13 00:09:36 +00:00
install -Dm644 "${srcdir}"/${pkgbase}-${pkgver}/LICENSE.txt "${pkgdir}"/usr/share/licenses/${pkgname}/LICENSE
2016-07-07 01:31:22 +00:00
}