opencv.guncellendi

This commit is contained in:
milisbir 2017-10-07 08:55:35 +03:00
parent 74f6dccde6
commit e6511e8b16
1 changed files with 31 additions and 12 deletions

View File

@ -1,31 +1,50 @@
# Description: OpenCV (Açık Kaynaklı Bilgisayar Vizyon Kütüphanesi) açık kaynaklı bir bilgisayar görme ve makine öğrenme yazılımı kütüphanesi. # Description: OpenCV (Açık Kaynaklı Bilgisayar Vizyon Kütüphanesi) açık kaynaklı bir bilgisayar görme ve makine öğrenme yazılımı kütüphanesi.
# URL: http://opencv.org/ # URL: http://opencv.org/
# Packager: milisarge # Packager: milisarge
# Depends on: libjpeg-turbo libtiff jasper libpng ffmpeg28 gstreamer xine-lib v4l-utils xorg-mesa # Depends on: libjpeg-turbo libtiff jasper libpng ffmpeg28 gstreamer xine-lib v4l-utils xorg-mesa python3-numpy python-numpy gtkglext libgphoto2
_pybin=python2 _pybin=python2
_pydir=python2.7 _pydir=python2.7
name=opencv name=opencv
version=3.3.0 version=3.3.0
release=1 release=2
source=(http://downloads.sourceforge.net/opencvlibrary/$name-$version.zip ) source=(http://downloads.sourceforge.net/opencvlibrary/$name-$version.zip
https://raw.githubusercontent.com/opencv/opencv_3rdparty/a62e20676a60ee0ad6581e217fe7e4bada3b95db/ippicv/ippicv_2017u2_lnx_intel64_20170418.tgz)
build() { build() {
cd $name-* cd $name-$version
ipp_surum=ippicv_2017u2_lnx_intel64_20170418.tgz
ipp_file=$DERLEME_KAYNAKDIZIN/$ipp_surum &&
ipp_hash=$(md5sum $ipp_file | cut -d" " -f1) &&
ipp_dir=.cache/ippicv &&
mkdir -p $ipp_dir &&
cp $ipp_file $ipp_dir/$ipp_hash-$ipp_surum
mkdir build mkdir build
cd build cd build
cmake -DCMAKE_BUILD_TYPE=Release \ cmake -D WITH_OPENCL=ON \
-DCMAKE_INSTALL_PREFIX=/usr \ -DWITH_OPENGL=ON \
-DCMAKE_SKIP_RPATH=ON \ -DWITH_TBB=ON \
-DWITH_XINE=ON \ -DWITH_XINE=ON \
-DWITH_UiNICAP=OFF \ -DWITH_GSTREAMER=OFF \
-DPYTHON_EXECUTABLE=/usr/bin/$_pybin \ -DBUILD_WITH_DEBUG_INFO=OFF \
-DPYTHON_INCLUDE_DIR=/usr/include/$_pydir \ -DBUILD_TESTS=OFF \
-DPYTHON_LIBRARY=/usr/lib/lib$_pydir.so ../ -DBUILD_PERF_TESTS=OFF \
-DBUILD_EXAMPLES=ON \
-DINSTALL_C_EXAMPLES=ON \
-DINSTALL_PYTHON_EXAMPLES=ON \
-DCMAKE_BUILD_TYPE=Release \
-DCMAKE_INSTALL_PREFIX=/usr \
-DCMAKE_SKIP_RPATH=ON \
..
make make
make DESTDIR=$PKG install make DESTDIR=$PKG install
} }