forked from pool/libnest2d
- Update git version, 20201105 * fix holes duplicates while offset processing - Fix build failures with Boost 1.75, add 0001-Set-CXX_STANDARD-14-for-Boost-Geometry.patch OBS-URL: https://build.opensuse.org/request/show/866388 OBS-URL: https://build.opensuse.org/package/show/science/libnest2d?expand=0&rev=3
67 lines
1.9 KiB
RPMSpec
67 lines
1.9 KiB
RPMSpec
#
|
|
# spec file for package libnest2d
|
|
#
|
|
# Copyright (c) 2021 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/
|
|
#
|
|
|
|
|
|
Name: libnest2d
|
|
Version: 0.4+git.20201105
|
|
Release: 0
|
|
Summary: Library for the 2D bin packaging problem
|
|
License: LGPL-3.0-only
|
|
URL: https://github.com/tamasmeszaros/libnest2d
|
|
Source: libnest2d-%{version}.tar.gz
|
|
# PATCH-FIX-UPSTREAM -- https://github.com/tamasmeszaros/libnest2d/pull/18
|
|
Patch0: Add-disallowed-areas.patch
|
|
# PATCH-FIX-OPENSUSE -- Fix build with boost 1.75
|
|
Patch1: 0001-Set-CXX_STANDARD-14-for-Boost-Geometry.patch
|
|
BuildRequires: cmake
|
|
BuildRequires: gcc-c++
|
|
BuildRequires: libboost_headers-devel
|
|
BuildRequires: libpolyclipping-devel
|
|
BuildRequires: pkgconfig(nlopt)
|
|
|
|
%description
|
|
A library and framework for the 2D bin packaging problem.
|
|
|
|
%package devel
|
|
Summary: Library for the 2D bin packaging problem
|
|
Requires: libboost_headers-devel
|
|
Requires: libpolyclipping-devel
|
|
Requires: pkgconfig(nlopt)
|
|
|
|
%description devel
|
|
A library and framework for the 2D bin packaging problem.
|
|
|
|
%prep
|
|
%autosetup -p1
|
|
sed -i -e "s/ lib\([^n]\)/ "%{_lib}"\1/" CMakeLists.txt
|
|
|
|
%build
|
|
%cmake \
|
|
-DLIBNEST2D_HEADER_ONLY=ON
|
|
%cmake_build
|
|
|
|
%install
|
|
%cmake_install
|
|
|
|
%files devel
|
|
%license LICENSE.txt
|
|
%doc README.md
|
|
%{_includedir}/libnest2d
|
|
%{_libdir}/cmake/Libnest2D
|
|
|
|
%changelog
|