2021-04-04 15:05:50 +00:00
|
|
|
# Maintainer: Antonio Rojas <arojas@archlinux.org>
|
|
|
|
# Contributor: Ray Rashif <schiv@archlinux.org>
|
2012-11-17 07:36:21 +00:00
|
|
|
# Contributor: Tobias Powalowski <tpowa@archlinux.org>
|
|
|
|
|
|
|
|
# ALARM: Kevin Mihelich <kevin@archlinuxarm.org>
|
2018-07-04 17:16:05 +00:00
|
|
|
# - remove -DCPU_BASELINE_{ENABLE,DISABLE} flags for SSE
|
2023-09-20 23:25:45 +00:00
|
|
|
# - remove cudnn makedepends
|
|
|
|
# - remove opencv-cuda package
|
2012-11-17 07:36:21 +00:00
|
|
|
|
|
|
|
pkgbase=opencv
|
2023-09-20 23:25:45 +00:00
|
|
|
pkgname=(opencv
|
|
|
|
opencv-samples
|
|
|
|
python-opencv)
|
2024-06-22 13:03:31 +00:00
|
|
|
pkgver=4.10.0
|
2024-09-12 17:59:04 +00:00
|
|
|
pkgrel=7
|
2022-11-14 13:57:19 +00:00
|
|
|
pkgdesc='Open Source Computer Vision Library'
|
2018-07-04 17:16:05 +00:00
|
|
|
arch=(x86_64)
|
2024-02-06 04:07:51 +00:00
|
|
|
license=(Apache-2.0)
|
2021-07-06 16:46:41 +00:00
|
|
|
url='https://opencv.org/'
|
2023-09-20 23:25:45 +00:00
|
|
|
depends=(abseil-cpp
|
|
|
|
cblas
|
|
|
|
ffmpeg
|
|
|
|
freetype2
|
|
|
|
gcc-libs
|
|
|
|
glib2
|
|
|
|
glibc
|
|
|
|
gst-plugins-base
|
|
|
|
gst-plugins-base-libs
|
|
|
|
gstreamer
|
|
|
|
harfbuzz
|
|
|
|
lapack
|
|
|
|
libdc1394
|
|
|
|
libglvnd
|
|
|
|
libjpeg-turbo
|
|
|
|
libpng
|
|
|
|
libtiff
|
|
|
|
libwebp
|
|
|
|
openexr
|
|
|
|
openjpeg2
|
2023-11-18 14:23:11 +00:00
|
|
|
verdict
|
2023-09-20 23:25:45 +00:00
|
|
|
protobuf
|
|
|
|
tbb
|
|
|
|
zlib)
|
|
|
|
makedepends=(ant
|
|
|
|
cmake
|
|
|
|
eigen
|
|
|
|
fmt
|
2024-05-24 12:57:20 +00:00
|
|
|
git
|
2023-09-20 23:25:45 +00:00
|
|
|
glew
|
|
|
|
hdf5
|
|
|
|
java-environment
|
|
|
|
lapacke
|
|
|
|
mesa
|
|
|
|
nlohmann-json
|
|
|
|
openmpi
|
|
|
|
pugixml
|
|
|
|
python-numpy
|
|
|
|
python-setuptools
|
|
|
|
qt6-5compat
|
|
|
|
vtk)
|
2018-07-04 17:16:05 +00:00
|
|
|
optdepends=('opencv-samples: samples'
|
2018-09-29 13:57:12 +00:00
|
|
|
'vtk: for the viz module'
|
2021-04-04 23:15:59 +00:00
|
|
|
'glew: for the viz module'
|
2023-05-03 23:32:52 +00:00
|
|
|
'qt6-base: for the HighGUI module'
|
2021-04-04 23:15:59 +00:00
|
|
|
'hdf5: for the HDF5 module'
|
2016-12-08 00:39:10 +00:00
|
|
|
'opencl-icd-loader: For coding with OpenCL'
|
2019-01-06 16:44:12 +00:00
|
|
|
'java-runtime: Java interface')
|
2024-05-24 12:57:20 +00:00
|
|
|
source=(git+https://github.com/opencv/opencv#tag=$pkgver
|
|
|
|
git+https://github.com/opencv/opencv_contrib#tag=$pkgver
|
2024-06-21 22:56:32 +00:00
|
|
|
vtk9.patch)
|
2024-06-22 13:03:31 +00:00
|
|
|
sha256sums=('3882d3fdbd782983dcab19cada16a9206165d153bc5528f9007a48f27e52dc68'
|
|
|
|
'24f040b420d63566aeb77191706ff08b446698adf13a715d1f3cc6b60d5c7c5b'
|
2024-06-21 22:56:32 +00:00
|
|
|
'f35a2d4ea0d6212c7798659e59eda2cb0b5bc858360f7ce9c696c77d3029668e')
|
2016-04-24 19:28:02 +00:00
|
|
|
|
2020-07-27 21:24:56 +00:00
|
|
|
prepare() {
|
2024-06-21 22:56:32 +00:00
|
|
|
pushd opencv
|
|
|
|
patch -p1 < ../vtk9.patch # Don't require all vtk optdepends
|
2024-05-24 12:57:20 +00:00
|
|
|
|
2024-06-21 22:56:32 +00:00
|
|
|
# fix build with cudnn 9
|
|
|
|
git cherry-pick -n 05e48605a0aea00d3a89b9ab5e25cdf89568aa28
|
|
|
|
# fix build with CUDA 12.4
|
|
|
|
git cherry-pick -n 1668203a1c6474b8368e27c55abc10ae7f17c841
|
|
|
|
popd
|
2024-05-24 12:57:20 +00:00
|
|
|
|
2024-06-21 22:56:32 +00:00
|
|
|
pushd opencv_contrib
|
|
|
|
# fix build with CUDA 12.4
|
|
|
|
git cherry-pick -n 4e766a039eda04b75f28f6905e4192d99b7874c7
|
|
|
|
git cherry-pick -n 1ed3dd2c53888e3289afdb22ec4e9ebbff3dba87
|
|
|
|
git cherry-pick -n 8c16a489a1fa9e2ccf21ce8eeb7fbb1affe548b1
|
2018-07-04 17:16:05 +00:00
|
|
|
}
|
2013-03-05 01:58:19 +00:00
|
|
|
|
2018-07-04 17:16:05 +00:00
|
|
|
build() {
|
2022-06-06 18:06:29 +00:00
|
|
|
export JAVA_HOME="/usr/lib/jvm/default"
|
2017-12-05 19:37:48 +00:00
|
|
|
# cmake's FindLAPACK doesn't add cblas to LAPACK_LIBRARIES, so we need to specify them manually
|
2021-10-28 13:31:21 +00:00
|
|
|
_opts="-DWITH_OPENCL=ON \
|
|
|
|
-DWITH_OPENGL=ON \
|
2023-05-03 23:32:52 +00:00
|
|
|
-DOpenGL_GL_PREFERENCE=LEGACY \
|
2023-07-04 13:45:09 +00:00
|
|
|
-DCMAKE_CXX_STANDARD=17 \
|
2021-10-28 13:31:21 +00:00
|
|
|
-DWITH_TBB=ON \
|
|
|
|
-DWITH_VULKAN=ON \
|
|
|
|
-DWITH_QT=ON \
|
|
|
|
-DBUILD_WITH_DEBUG_INFO=OFF \
|
|
|
|
-DBUILD_TESTS=OFF \
|
|
|
|
-DBUILD_PERF_TESTS=OFF \
|
|
|
|
-DBUILD_EXAMPLES=ON \
|
2021-11-10 00:55:16 +00:00
|
|
|
-DBUILD_PROTOBUF=OFF \
|
|
|
|
-DPROTOBUF_UPDATE_FILES=ON \
|
2021-10-28 13:31:21 +00:00
|
|
|
-DINSTALL_C_EXAMPLES=ON \
|
|
|
|
-DINSTALL_PYTHON_EXAMPLES=ON \
|
|
|
|
-DCMAKE_INSTALL_PREFIX=/usr \
|
2024-05-24 12:57:20 +00:00
|
|
|
-DOPENCV_EXTRA_MODULES_PATH=$srcdir/opencv_contrib/modules \
|
2021-10-28 13:31:21 +00:00
|
|
|
-DOPENCV_SKIP_PYTHON_LOADER=ON \
|
2021-11-04 01:50:26 +00:00
|
|
|
-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 \
|
2021-10-28 13:31:21 +00:00
|
|
|
-DOPENCV_GENERATE_PKGCONFIG=ON \
|
|
|
|
-DOPENCV_ENABLE_NONFREE=ON \
|
|
|
|
-DOPENCV_JNI_INSTALL_PATH=lib \
|
|
|
|
-DOPENCV_GENERATE_SETUPVARS=OFF \
|
2023-07-06 15:37:37 +00:00
|
|
|
-DEIGEN_INCLUDE_PATH=/usr/include/eigen3 \
|
|
|
|
-DCMAKE_FIND_PACKAGE_PREFER_CONFIG=ON \
|
|
|
|
-Dprotobuf_MODULE_COMPATIBLE=ON"
|
2022-11-14 13:57:19 +00:00
|
|
|
|
2024-05-24 12:57:20 +00:00
|
|
|
cmake -B build -S $pkgname $_opts
|
2020-07-27 21:24:56 +00:00
|
|
|
cmake --build build
|
2012-11-17 07:36:21 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
package_opencv() {
|
2020-07-27 21:24:56 +00:00
|
|
|
DESTDIR="$pkgdir" cmake --install build
|
2012-11-17 07:36:21 +00:00
|
|
|
|
2018-11-24 13:39:33 +00:00
|
|
|
# separate samples package
|
2020-02-28 13:20:22 +00:00
|
|
|
mv "$pkgdir"/usr/share/opencv4/samples "$srcdir"
|
2020-10-03 16:24:26 +00:00
|
|
|
|
|
|
|
# Add java symlinks expected by some binary blobs
|
2020-10-10 15:53:25 +00:00
|
|
|
ln -sr "$pkgdir"/usr/share/java/{opencv4/opencv-${pkgver//./},opencv}.jar
|
|
|
|
ln -sr "$pkgdir"/usr/lib/{libopencv_java${pkgver//./},libopencv_java}.so
|
2021-04-04 23:15:59 +00:00
|
|
|
|
|
|
|
# Split Python bindings
|
|
|
|
rm -r "$pkgdir"/usr/lib/python3*
|
2012-11-17 07:36:21 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
package_opencv-samples() {
|
2021-10-28 16:45:05 +00:00
|
|
|
pkgdesc+=' (samples)'
|
|
|
|
depends=(opencv)
|
2012-11-17 07:36:21 +00:00
|
|
|
unset optdepends
|
|
|
|
|
2020-02-28 13:20:22 +00:00
|
|
|
mkdir -p "$pkgdir"/usr/share/opencv4
|
2020-07-27 21:24:56 +00:00
|
|
|
mv samples "$pkgdir"/usr/share/opencv4
|
2021-04-04 23:15:59 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
package_python-opencv() {
|
2021-10-28 16:45:05 +00:00
|
|
|
pkgdesc='Python bindings for OpenCV'
|
2023-09-20 23:25:45 +00:00
|
|
|
depends=(fmt
|
|
|
|
glew
|
|
|
|
hdf5
|
|
|
|
jsoncpp
|
|
|
|
opencv
|
|
|
|
openmpi
|
|
|
|
pugixml
|
|
|
|
python-numpy
|
|
|
|
qt6-base
|
|
|
|
vtk)
|
2021-04-04 23:15:59 +00:00
|
|
|
unset optdepends
|
|
|
|
|
|
|
|
DESTDIR="$pkgdir" cmake --install build/modules/python3
|
2012-11-17 07:36:21 +00:00
|
|
|
}
|