Created
May 8, 2019 02:43
-
-
Save dzil123/c2a986a6bc0859a42474f95a84ff0472 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Maintainer: Ray Rashif <[email protected]> | |
# Contributor: Tobias Powalowski <[email protected]> | |
pkgbase=opencv344 | |
pkgname=(opencv344 opencv344-samples) | |
pkgver=3.4.4 | |
pkgrel=1 | |
pkgdesc="Open Source Computer Vision Library" | |
arch=(x86_64) | |
license=(BSD) | |
url="http://opencv.org/" | |
depends=(intel-tbb openexr gst-plugins-base libdc1394 cblas lapack libgphoto2 jasper ffmpeg) | |
makedepends=(cmake python-numpy python-setuptools mesa eigen hdf5 lapacke gtk3 vtk glew) | |
optdepends=('opencv-samples344: samples' | |
'gtk3: for the HighGUI module' | |
'vtk: for the viz module' | |
'hdf5: support for HDF5 format' | |
'opencl-icd-loader: For coding with OpenCL' | |
'python-numpy: Python interface') | |
source=("$pkgbase-$pkgver.tar.gz::https://github.com/opencv/opencv/archive/$pkgver.zip" | |
"opencv_contrib-$pkgver.tar.gz::https://github.com/opencv/opencv_contrib/archive/$pkgver.tar.gz") | |
sha256sums=('b5755384cbadf67f55838c6cfd9ae1aad0ebad2c7cfe4c1174417c80d2ed15a9' | |
'765446d994713363554978d1da447fef77a2cdf9e38742f0a98b13b92652626d') | |
prepare() { | |
mkdir -p build | |
} | |
build() { | |
cd build | |
# cmake's FindLAPACK doesn't add cblas to LAPACK_LIBRARIES, so we need to specify them manually | |
cmake ../$pkgname-$pkgver \ | |
-DWITH_OPENCL=ON \ | |
-DWITH_OPENGL=ON \ | |
-DWITH_TBB=ON \ | |
-DOpenGL_GL_PREFERENCE=GLVND \ | |
-DBUILD_WITH_DEBUG_INFO=OFF \ | |
-DBUILD_TESTS=OFF \ | |
-DBUILD_PERF_TESTS=OFF \ | |
-DBUILD_EXAMPLES=ON \ | |
-DINSTALL_C_EXAMPLES=ON \ | |
-DINSTALL_PYTHON_EXAMPLES=ON \ | |
-DCMAKE_INSTALL_PREFIX=/usr \ | |
-DCMAKE_INSTALL_LIBDIR=lib \ | |
-DCPU_BASELINE_DISABLE=SSE3 \ | |
-DCPU_BASELINE_REQUIRE=SSE2 \ | |
-DOPENCV_EXTRA_MODULES_PATH="$srcdir/opencv_contrib-$pkgver/modules" \ | |
-DLAPACK_LIBRARIES="/usr/lib/liblapack.so;/usr/lib/libblas.so;/usr/lib/libcblas.so" \ | |
-DLAPACK_CBLAS_H="/usr/include/cblas.h" \ | |
-DLAPACK_LAPACKE_H="/usr/include/lapacke.h" | |
make | |
} | |
package_opencv344() { | |
options=(staticlibs) | |
cd build | |
make DESTDIR="$pkgdir" install | |
# install license file | |
install -Dm644 "$srcdir"/$pkgname-$pkgver/LICENSE -t "$pkgdir"/usr/share/licenses/$pkgname | |
# install python bindings | |
cd python_loader | |
python setup.py install --root="$pkgdir" | |
rm -r "$pkgdir"/usr/python | |
cd "$pkgdir"/usr/share | |
# separate samples package | |
mv OpenCV/samples "$srcdir/$pkgname-samples" | |
mv OpenCV $pkgname # otherwise folder naming is inconsistent | |
} | |
package_opencv344-samples() { | |
pkgdesc+=" (samples)" | |
depends=("opencv344=$pkgver") | |
unset optdepends | |
mkdir -p "$pkgdir"/usr/share/opencv | |
cp -r "$srcdir"/opencv-samples "$pkgdir"/usr/share/opencv/samples | |
# fix permissions | |
chmod 755 "$pkgdir"/usr/share/opencv/samples/* | |
# install license file | |
install -Dm644 "$srcdir"/opencv-$pkgver/LICENSE -t "$pkgdir"/usr/share/licenses/$pkgname | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment