PKGBUILDs/extra/opencv/PKGBUILD

129 lines
3.6 KiB
Bash
Raw Normal View History

2012-11-21 06:21:34 +00:00
# $Id: PKGBUILD 171611 2012-11-20 13:12:19Z schiv $
2012-11-17 07:36:21 +00:00
# Maintainer: Ray Rashif <schiv@archlinux.org>
# Contributor: Tobias Powalowski <tpowa@archlinux.org>
# ALARM: Kevin Mihelich <kevin@archlinuxarm.org>
# - remove intel-tbb depend
2013-02-11 20:14:51 +00:00
# - remove libcl (opt)depend, disable in cmakeopts
2012-11-17 07:36:21 +00:00
pkgbase=opencv
pkgname=('opencv' 'opencv-docs' 'opencv-samples')
_realname=OpenCV
2013-03-05 01:58:19 +00:00
pkgver=2.4.4
pkgrel=1
2012-11-17 07:36:21 +00:00
pkgdesc="Open Source Computer Vision Library"
arch=('i686' 'x86_64')
license=('BSD')
url="http://opencv.org/"
depends=('jasper' 'gstreamer0.10-base'
2012-11-21 06:21:34 +00:00
'xine-lib' 'libdc1394' 'openexr' 'gtkglext')
makedepends=('cmake' 'python2-numpy' 'eigen2'
2013-03-05 01:58:19 +00:00
'opencl-headers' 'mesa'
'texlive-bin' 'python2-sphinx') # for docs
2012-11-17 07:36:21 +00:00
optdepends=('opencv-docs'
'opencv-samples'
'eigen2'
'python2-numpy: Python 2.x interface')
source=("http://downloads.sourceforge.net/opencvlibrary/$_realname-${pkgver}.tar.bz2"
'pkgconfig.patch'
'fsh.patch')
2013-03-05 01:58:19 +00:00
md5sums=('bb7272c102a801a9f9ee01db6e7ad8e9'
2012-11-17 07:36:21 +00:00
'cb916260b5ec594fe7a0cc2e54fc569f'
'35256e3ccace373feba8131d1540a0de')
2013-02-11 20:14:51 +00:00
_cmakeopts=('-D WITH_OPENCL=OFF'
2012-11-21 06:21:34 +00:00
'-D WITH_OPENGL=ON'
'-D WITH_TBB=OFF'
'-D WITH_XINE=ON'
'-D ENABLE_SSE=OFF'
'-D ENABLE_SSE2=OFF'
'-D ENABLE_SSE3=OFF'
'-D BUILD_PACKAGE=OFF'
'-D BUILD_WITH_DEBUG_INFO=OFF'
2012-11-17 07:36:21 +00:00
'-D BUILD_TESTS=OFF'
2012-11-21 06:21:34 +00:00
'-D BUILD_PERF_TESTS=OFF'
2012-11-17 07:36:21 +00:00
'-D BUILD_EXAMPLES=ON'
'-D INSTALL_C_EXAMPLES=ON'
'-D INSTALL_PYTHON_EXAMPLES=ON'
2012-11-21 06:21:34 +00:00
'-D CMAKE_BUILD_TYPE=Release'
'-D CMAKE_INSTALL_PREFIX=/usr'
'-D CMAKE_SKIP_RPATH=ON')
2012-11-17 07:36:21 +00:00
build() {
cd "$srcdir/$_realname-$pkgver"
# fix pkg-config mess
# see https://bugs.archlinux.org/task/32430
2013-03-05 01:58:19 +00:00
# and http://code.opencv.org/issues/1925
2012-11-17 07:36:21 +00:00
patch -Np1 -i "$srcdir/pkgconfig.patch"
2013-03-05 01:58:19 +00:00
# fix another upstream mess that they won't fix
2012-11-17 07:36:21 +00:00
# see http://code.opencv.org/issues/2512
patch -Np1 -i "$srcdir/fsh.patch"
2013-03-05 01:58:19 +00:00
# python2 compatibility for generating docs
sed -i 's/sphinx-build/sphinx-build2/' cmake/OpenCVDetectPython.cmake
2012-11-17 07:36:21 +00:00
cmake ${_cmakeopts[@]} .
make
}
package_opencv() {
cd "$srcdir/$_realname-$pkgver"
make DESTDIR="$pkgdir" install
# install license file
install -Dm644 "$srcdir/$_realname-$pkgver/doc/license.txt" \
"$pkgdir/usr/share/licenses/$pkgname/LICENSE"
cd "$pkgdir/usr/share"
# separate docs package; also be -R friendly
2013-03-05 01:58:19 +00:00
[[ -d doc ]] && mv doc "$srcdir/opencv-doc"
2012-11-17 07:36:21 +00:00
# separate samples package
2013-03-05 01:58:19 +00:00
[[ -d $pkgname/samples ]] && mv $pkgname/samples "$srcdir/opencv-samples"
2012-11-17 07:36:21 +00:00
}
package_opencv-docs() {
pkgdesc+=" (documentation)"
unset depends
unset optdepends
options=('docs')
2013-03-05 01:58:19 +00:00
# PDFs are not being generated for some reason as of 2.4.4
# even after adding latex and sphinx deps
# when previously without them there were a couple of good docs installed
2012-11-17 07:36:21 +00:00
cd "$srcdir"
2013-03-05 01:58:19 +00:00
# doc dir now includes opencv subdir (looks like they finally listened)
cp -r opencv-doc "$pkgdir/usr/share/doc"
2012-11-17 07:36:21 +00:00
# install license file
2012-11-21 06:21:34 +00:00
#install -Dm644 "$srcdir/$_realname-$pkgver/doc/license.txt" \
# "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
2012-11-17 07:36:21 +00:00
}
package_opencv-samples() {
pkgdesc+=" (samples)"
depends=('bash')
unset optdepends
unset options
cd "$srcdir"
2012-11-21 06:21:34 +00:00
mkdir -p "$pkgdir/usr/share/opencv"
cp -r opencv-samples "$pkgdir/usr/share/opencv/samples"
2012-11-17 07:36:21 +00:00
2013-01-04 15:58:45 +00:00
# Do we really need licenses for these minor splits?
2012-11-17 07:36:21 +00:00
# install license file
2012-11-21 06:21:34 +00:00
#install -Dm644 "$srcdir/$_realname-$pkgver/doc/license.txt" \
# "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
2012-11-17 07:36:21 +00:00
}
# vim:set ts=2 sw=2 et: