Hello, I'm trying to package SolveSpace and I'm having some issues. Everything seems to build fine until the very end where it make install doesn't work and I can't seem to get any more details on why. Here is my package.yml so far:
name : solvespace
version : 3.1
release : 1
source :
- git|https://github.com/solvespace/solvespace.git : v3.1
license :
- GPL-3.0-or-later
component :
- office
- mulitmedia.graphics
summary :
- SOLVESPACE is a free (GPLv3) parametric 3d CAD tool.
description: |
SOLVESPACE is a free (GPLv3) parametric 3d CAD tool.
builddeps :
- pkgconfig(cairo)
- pkgconfig(libpng)
- pkgconfig(zlib)
- pkgconfig(json-c)
- pkgconfig(freetype2)
- pkgconfig(fontconfig)
- pkgconfig(gtkmm-3.0)
- pkgconfig(pangomm-1.4)
- pkgconfig(glu)
- pkgconfig(libglvnd)
setup : |
git submodule update --init extlib/libdxfrw extlib/mimalloc extlib/eigen
build : |
mkdir build
cd build
%cmake .. -DCMAKE_BUILD_TYPE=Release -DENABLE_OPENMP=ON
%make
install : |
%make_install
The error I get is:
+ make install
make: *** No rule to make target 'install'. Stop.
Command '['/bin/bash', '--norc', '--noprofile', '/tmp/ypkg-installAc_Jp5']' returned non-zero exit status 2
[Build] install failed for solvespace
Failed to build packages
make: *** [../Makefile.common:17: build-stable] Error 1
Any help is appreciated, thanks!