File vigra.spec of Package vigra
#
# spec file for package vigra
#
# Copyright (c) 2025 SUSE LLC
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
# upon. The license for this file, and modifications and additions to the
# file, is the same license as for the pristine package itself (unless the
# license for the pristine package is not an Open Source License, in which
# case the license is the MIT License). An "Open Source License" is a
# license that conforms to the Open Source Definition (Version 1.9)
# published by the Open Source Initiative.
# Please submit bugfixes or comments via https://bugs.opensuse.org/
#
%if 0%{?suse_version} < 1600
%bcond_with numpy
%else
%ifnarch %{ix86} %{arm}
%bcond_without numpy
%endif
%endif
#LEMON build doesn't work right now (shared library problem)
%bcond_with lemon
%define _shlibname libvigraimpex11
Name: vigra
Version: 1.12.2
Release: 0
Summary: Computer vision Library
License: MIT
Group: Development/Libraries/C and C++
URL: https://ukoethe.github.io/vigra/
Source: https://github.com/ukoethe/vigra/archive/refs/tags/Version-1-12-2.tar.gz#/%{name}-%{version}.tar.gz
BuildRequires: cmake >= 3.12
BuildRequires: fdupes
BuildRequires: fftw3-devel
BuildRequires: gcc-c++
BuildRequires: hdf5-devel
BuildRequires: libjpeg-devel
BuildRequires: libpng-devel
BuildRequires: libtiff-devel
BuildRequires: openexr-devel
BuildRequires: pkgconfig
BuildRequires: zlib-devel
%if %{with numpy}
BuildRequires: libboost_headers-devel
BuildRequires: libboost_python3-devel
BuildRequires: python-rpm-macros
BuildRequires: python3-devel
BuildRequires: python3-numpy-devel
BuildRequires: python3-setuptools
%endif
%if %{with lemon}
BuildRequires: lemon-devel
%endif
%description
VIGRA stands for "Vision with Generic Algorithms". It is a novel
computer vision library that puts its main emphasis on customizable
algorithms and data structures. By using template techniques similar to
those in the C++ Standard Template Library, you can easily adapt any
VIGRA component to the needs of your application, without giving up
execution speed.
%package -n %{_shlibname}
Summary: Computer vision Library
Group: System/Libraries
Provides: %{name} = %{version}
Obsoletes: %{name} < %{version}
%description -n %{_shlibname}
VIGRA stands for "Vision with Generic Algorithms". It is a novel
computer vision library that puts its main emphasis on customizable
algorithms and data structures. By using template techniques similar to
those in the C++ Standard Template Library, you can easily adapt any
VIGRA component to the needs of your application, without giving up
execution speed.
%package devel
Summary: Development files for VIGRA Library
Group: Development/Libraries/C and C++
Requires: %{_shlibname} = %{version}
Requires: fftw3-devel
Requires: hdf5-devel
Requires: libjpeg-devel
Requires: libpng-devel
Requires: libstdc++-devel
Requires: libtiff-devel
Requires: openexr-devel
Requires: python3-base
Requires: zlib-devel
%if %{with numpy}
Requires: python3-numpy
%endif
%description devel
VIGRA stands for "Vision with Generic Algorithms". It is a novel
computer vision library that puts its main emphasis on customizable
algorithms and data structures. By using template techniques similar to
those in the C++ Standard Template Library, you can easily adapt any
VIGRA component to the needs of your application, without giving up
execution speed.
%if %{with numpy}
%package -n python3-vigranumpy
Summary: Numpy support for VIGRA library
Group: Development/Libraries/C and C++
Requires: %{name} = %{version}
Requires: python3-numpy
%description -n python3-vigranumpy
VIGRA stands for "Vision with Generic Algorithms". It is a novel
computer vision library that puts its main emphasis on customizable
algorithms and data structures. By using template techniques similar to
those in the C++ Standard Template Library, you can easily adapt any
VIGRA component to the needs of your application, without giving up
execution speed. This package contains python / numpy bindings for VIGRA
%endif
%prep
%autosetup -p1 -n%{name}-Version-1-12-2
sed -i -e "1s|#!.*|#!/usr/bin/python3|" config/vigra-config.in
%build
%cmake \
-DDOCINSTALL=%{_docdir} \
-DWITH_HDF5=1 \
-DWITH_OPENEXR=1 \
%if %{with lemon}
-DWITH_LEMON=1
%else
-DWITH_LEMON=0
%endif
%cmake_build
%install
%cmake_install
# Move CMake config files to the usual location
mkdir -p %{buildroot}%{_libdir}/cmake
mv %{buildroot}%{_libdir}/vigra %{buildroot}%{_libdir}/cmake
%if %{with numpy}
mv %{buildroot}%{_libdir}/vigranumpy %{buildroot}%{_libdir}/cmake
%endif
%fdupes %{buildroot}%{_prefix}
%ldconfig_scriptlets -n %{_shlibname}
%files -n %{_shlibname}
%doc README.md
%license LICENSE.txt
%{_libdir}/libvigraimpex.so.*
%files devel
%doc %{_docdir}/%{name}
%{_bindir}/vigra-config
%{_includedir}/vigra/
%{_libdir}/cmake/vigra/
%{_libdir}/libvigraimpex.so
%if %{with numpy}
%files -n python3-vigranumpy
%dir %{python_sitelib}/vigra
%dir %{python_sitelib}/vigra/pyqt
%{python_sitelib}/vigra/*.py
%{python_sitelib}/vigra/pyqt/*.py
%{python_sitelib}/vigra/*.so
%{_libdir}/cmake/vigranumpy/
%endif
%changelog