PKGBUILDs/extra/opencv/PKGBUILD

122 lines
3.5 KiB
Bash
Raw Normal View History

2013-11-12 23:13:01 +00:00
# $Id$
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>
2015-04-28 20:09:04 +00:00
# - remove intel-tbb depend for v5 and v6
2013-02-11 20:14:51 +00:00
# - remove libcl (opt)depend, disable in cmakeopts
2014-11-03 15:02:40 +00:00
#
# ALARM: David Beauchamp <alarm@davidbeauchamp.com>
# - remove x86 ASM patch
2012-11-17 07:36:21 +00:00
pkgbase=opencv
2013-04-11 19:27:35 +00:00
pkgname=('opencv' 'opencv-samples')
2014-11-03 15:02:40 +00:00
pkgver=2.4.10
2015-05-08 18:21:37 +00:00
pkgrel=3
2012-11-17 07:36:21 +00:00
pkgdesc="Open Source Computer Vision Library"
arch=('i686' 'x86_64')
license=('BSD')
url="http://opencv.org/"
2014-09-17 15:20:10 +00:00
depends=('openexr' 'xine-lib' 'libdc1394' 'gtkglext')
2015-04-28 20:09:04 +00:00
depends_armv7h=('intel-tbb')
2014-11-11 20:22:26 +00:00
makedepends=('cmake' 'python2-numpy' 'mesa' 'eigen2')
2013-04-11 19:27:35 +00:00
optdepends=('opencv-samples'
2012-11-17 07:36:21 +00:00
'eigen2'
'python2-numpy: Python 2.x interface')
2014-01-03 02:10:38 +00:00
source=("http://downloads.sourceforge.net/opencvlibrary/$pkgname-$pkgver.zip"
2012-11-17 07:36:21 +00:00
'pkgconfig.patch'
2013-11-12 23:13:01 +00:00
'fsh.patch')
2014-11-03 15:02:40 +00:00
md5sums=('ec63952d3a3dff965d5fdde765926821'
2013-11-12 23:13:01 +00:00
'c7cea48ed7d4f729ebdb9673bac41bd3'
'c597598d142dd34d0eb4af7d6e9779d8')
2012-11-17 07:36:21 +00:00
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_XINE=ON'
2014-09-17 15:20:10 +00:00
'-D WITH_GSTREAMER=OFF'
2012-11-21 06:21:34 +00:00
'-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
2013-11-12 23:13:01 +00:00
# SSE only available from Pentium 3 onwards (i686 is way older)
[[ "$CARCH" = 'i686' ]] && \
_cmakeopts+=('-D ENABLE_SSE=OFF'
'-D ENABLE_SSE2=OFF'
'-D ENABLE_SSE3=OFF')
# all x64 CPUs support SSE2 but not SSE3
[[ "$CARCH" = 'x86_64' ]] && _cmakeopts+=('-D ENABLE_SSE3=OFF')
2015-04-28 20:09:04 +00:00
# ARMv7 supports Intel TBB
[[ "$CARCH" = 'armv7h' ]] && _cmakeopts+=('-D WITH_TBB=ON')
2013-04-11 19:27:35 +00:00
prepare() {
cd "$srcdir/$pkgname-$pkgver"
2012-11-17 07:36:21 +00:00
2014-06-25 00:30:14 +00:00
msg2 "Fixing broken pkg-config (downstream)"
2012-11-17 07:36:21 +00:00
# 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"
2014-06-25 00:30:14 +00:00
# TODO: this is mostly upstream frei0r; they hardcode the path
#msg2 "Hack-fixing folder naming inconsistency (downstream)"
2012-11-17 07:36:21 +00:00
# see http://code.opencv.org/issues/2512
2013-11-12 23:13:01 +00:00
# and https://bugs.archlinux.org/task/32342
2014-06-25 00:30:14 +00:00
#patch -Np1 -i "$srcdir/fsh.patch"
2012-11-17 07:36:21 +00:00
2013-04-11 19:27:35 +00:00
# no longer including docs, see https://bugs.archlinux.org/task/34185
# python2 compatibility for generating (html) docs
#sed -i 's/sphinx-build/sphinx-build2/' cmake/OpenCVDetectPython.cmake
}
2013-03-05 01:58:19 +00:00
2013-04-11 19:27:35 +00:00
build() {
cd "$srcdir/$pkgname-$pkgver"
2013-03-05 01:58:19 +00:00
2012-11-17 07:36:21 +00:00
cmake ${_cmakeopts[@]} .
make
}
package_opencv() {
2013-11-15 13:07:28 +00:00
options=('staticlibs')
2013-04-11 19:27:35 +00:00
cd "$srcdir/$pkgname-$pkgver"
2012-11-17 07:36:21 +00:00
make DESTDIR="$pkgdir" install
# install license file
2014-06-25 00:30:14 +00:00
install -Dm644 "$srcdir/$pkgname-$pkgver/LICENSE" \
2012-11-17 07:36:21 +00:00
"$pkgdir/usr/share/licenses/$pkgname/LICENSE"
cd "$pkgdir/usr/share"
2013-04-11 19:27:35 +00:00
# separate samples package; also be -R friendly
2014-06-25 00:30:14 +00:00
if [[ -d OpenCV/samples ]]; then
mv OpenCV/samples "$srcdir/$pkgname-samples"
mv OpenCV $pkgname # otherwise folder naming is inconsistent
elif [[ ! -d OpenCV ]]; then
warning "Directory naming issue; samples package may not be built!"
2013-11-15 13:07:28 +00:00
fi
2012-11-17 07:36:21 +00:00
}
package_opencv-samples() {
pkgdesc+=" (samples)"
2013-11-15 13:07:28 +00:00
depends=("opencv=$pkgver") # sample codes change with lib/API
2012-11-17 07:36:21 +00:00
unset optdepends
2012-11-21 06:21:34 +00:00
mkdir -p "$pkgdir/usr/share/opencv"
2013-04-11 19:27:35 +00:00
cp -r "$srcdir/opencv-samples" "$pkgdir/usr/share/opencv/samples"
2013-04-20 17:28:16 +00:00
# install license file
2014-06-25 00:30:14 +00:00
install -Dm644 "$srcdir/opencv-$pkgver/LICENSE" \
2013-04-20 17:28:16 +00:00
"$pkgdir/usr/share/licenses/$pkgname/LICENSE"
2012-11-17 07:36:21 +00:00
}
# vim:set ts=2 sw=2 et: