Package Details: libnest2d 0.4+r61+g663daa6-2

Git Clone URL: https://aur.archlinux.org/libnest2d.git (read-only, click to copy)
Package Base: libnest2d
Description: 2D irregular bin packaging and nesting library written in modern C++
Upstream URL: https://github.com/tamasmeszaros/libnest2d
Licenses: LGPL-3.0-only
Provides: libnest2d_clipper_nlopt.so
Submitter: jelly
Maintainer: vitaliikuzhdin
Last Packager: vitaliikuzhdin
Votes: 1
Popularity: 0.001675
First Submitted: 2023-11-25 16:03 (UTC)
Last Updated: 2025-04-01 20:52 (UTC)

Latest Comments

vitaliikuzhdin commented on 2025-04-01 20:52 (UTC)

@elvisman113, fixed.

elvisman113 commented on 2025-04-01 20:32 (UTC)

Getting an error when upgrading 0.4-2 -> 0.4+r61+g663daa6-1:

CMake Error at CMakeLists.txt:1 (cmake_minimum_required):
  Compatibility with CMake < 3.5 has been removed from CMake.

  Update the VERSION argument <min> value.  Or, use the <min>...<max> syntax
  to tell CMake that the project requires at least <min> but has been updated
  to work with policies introduced by <max> or earlier.

  Or, add -DCMAKE_POLICY_VERSION_MINIMUM=3.5 to try configuring anyway.


-- Configuring incomplete, errors occurred!
==> ERROR: A failure occurred in build().
    Aborting...
 -> error making: libnest2d-exit status 4
 -> Failed to install the following packages. Manual intervention is required:
libnest2d - exit status 4

flaviut commented on 2024-05-26 18:49 (UTC)

Needed to tweak this to better match the wiki template to get it to build with ninja on my machine: https://wiki.archlinux.org/title/CMake_package_guidelines#Template

diff --git a/PKGBUILD b/PKGBUILD
index a3be553..5ed6ab7 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -20,19 +20,19 @@ prepare() {
   cd ${pkgname}
   # https://github.com/tamasmeszaros/libnest2d/pull/18
   patch -Np1 -i ${srcdir}/allow-disallowed-area.patch

   patch -Np1 -i ${srcdir}/fix-cpp-version.patch

-  mkdir build
 }

 build() {
-  cd ${pkgname}/build
   export CXXFLAGS+=" -ffat-lto-objects"
-  cmake .. -DLIBNEST2D_HEADER_ONLY=OFF -DCMAKE_INSTALL_PREFIX=/usr
+  cmake -B build -S "$pkgname" \
+      -DCMAKE_BUILD_TYPE='None' \
+      -DCMAKE_INSTALL_PREFIX='/usr' \
+      -DLIBNEST2D_HEADER_ONLY=OFF \
+      -Wno-dev
+  cmake --build build
 }

 package() {
-  cd ${pkgname}/build
-  make DESTDIR="${pkgdir}" install
+  DESTDIR="$pkgdir" cmake --install build
 }