forked from pool/openscad
Add patch to fix is_regular is not a member of fs OBS-URL: https://build.opensuse.org/request/show/1177116 OBS-URL: https://build.opensuse.org/package/show/graphics/openscad?expand=0&rev=48
113 lines
3.5 KiB
RPMSpec
113 lines
3.5 KiB
RPMSpec
#
|
|
# spec file for package openscad
|
|
#
|
|
# Copyright (c) 2024 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: openscad
|
|
Version: 2021.01
|
|
Release: 0
|
|
Summary: Programmers Solid 3D CAD Modeller
|
|
License: GPL-3.0-or-later
|
|
Group: Productivity/Graphics/CAD
|
|
URL: https://www.openscad.org/
|
|
Source: https://files.openscad.org/%{name}-%{version}.src.tar.gz
|
|
Patch0: fix_build_with_cgal-5.3.patch
|
|
Patch1: CVE-2022-0496.patch
|
|
Patch2: CVE-2022-0497.patch
|
|
Patch3: fix_build_with_cgal-5.4.patch
|
|
Patch4: fix_build_issue_with_overloaded_join.patch
|
|
Patch5: fix_fs_error.patch
|
|
BuildRequires: bison
|
|
BuildRequires: double-conversion-devel
|
|
BuildRequires: flex
|
|
BuildRequires: gcc-c++
|
|
BuildRequires: libboost_filesystem-devel
|
|
BuildRequires: libboost_program_options-devel
|
|
BuildRequires: libboost_regex-devel
|
|
BuildRequires: libboost_thread-devel
|
|
# Upstream has dropped pre-cgal-5.0 support and with that, reworked
|
|
# CGAL integration fully.
|
|
# Backporting relevant patches does not make sense.
|
|
BuildRequires: libcgal-devel > 5.0
|
|
BuildRequires: libqscintilla-qt5-devel
|
|
BuildRequires: libspnav-devel
|
|
BuildRequires: memory-constraints
|
|
BuildRequires: opencsg-devel
|
|
BuildRequires: pkgconfig
|
|
BuildRequires: pkgconfig(Qt5Concurrent)
|
|
BuildRequires: pkgconfig(Qt5Core)
|
|
BuildRequires: pkgconfig(Qt5DBus)
|
|
BuildRequires: pkgconfig(Qt5Gamepad)
|
|
BuildRequires: pkgconfig(Qt5Gui)
|
|
BuildRequires: pkgconfig(Qt5Multimedia)
|
|
BuildRequires: pkgconfig(Qt5Network)
|
|
BuildRequires: pkgconfig(Qt5OpenGL)
|
|
BuildRequires: pkgconfig(Qt5Widgets)
|
|
BuildRequires: pkgconfig(cairo) > 1.14
|
|
BuildRequires: pkgconfig(eigen3)
|
|
BuildRequires: pkgconfig(fontconfig)
|
|
BuildRequires: pkgconfig(freetype2)
|
|
BuildRequires: pkgconfig(harfbuzz)
|
|
BuildRequires: pkgconfig(libxml-2.0)
|
|
BuildRequires: pkgconfig(libzip)
|
|
# With v2019.05, openGL is required but Arm uses openGL ES
|
|
ExcludeArch: %{arm} aarch64
|
|
|
|
%description
|
|
OpenSCAD is a software for creating solid 3D CAD objects. It does not
|
|
focus on the artistic aspects of 3D modelling and does not target the
|
|
creation of, say, computer-animated movies, but instead on the CAD
|
|
aspects, e.g. modelling of machine parts.
|
|
|
|
%prep
|
|
%autosetup -p1
|
|
|
|
%build
|
|
%qmake5 PREFIX=%{_prefix} CONFIG+=qopenglwidget
|
|
|
|
# As of 08.05.2021, memoryperjob constraint is not working correctly,
|
|
# so limit memory per job here.
|
|
%limit_build -m 2500
|
|
%make_build
|
|
|
|
%install
|
|
%qmake5_install
|
|
|
|
install -D -m 0644 doc/openscad.1 %{buildroot}%{_mandir}/man1/openscad.1
|
|
|
|
# remove bundled liberation fonts
|
|
rm -r %{buildroot}%{_datadir}/openscad/fonts
|
|
|
|
%find_lang %{name}
|
|
|
|
rm %{buildroot}%{_datadir}/openscad/libraries/MCAD/.gitignore
|
|
|
|
%files -f %{name}.lang
|
|
%dir %{_datadir}/metainfo
|
|
|
|
%doc README.md doc/*.pdf
|
|
%license COPYING
|
|
|
|
%{_bindir}/openscad
|
|
%{_datadir}/applications/openscad.desktop
|
|
%{_datadir}/icons/hicolor/
|
|
%{_datadir}/metainfo/org.openscad.OpenSCAD.appdata.xml
|
|
%{_datadir}/mime/packages/openscad.xml
|
|
%{_datadir}/openscad/
|
|
%{_mandir}/man1/*
|
|
|
|
%changelog
|