File libdxfrw.spec of Package libdxfrw
#
# spec file for package libdxfrw
#
# Copyright (c) 2023 SUSE LLC
# Copyright (c) 2015 Asterios Dramis <asterios.dramis@gmail.com>.
#
# 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/
#
%define so_ver 1
Name: libdxfrw
Version: 2.2.0+git.20221210
Release: 0
Summary: Library to read and write DXF files
License: GPL-2.0-or-later
Group: Development/Libraries/C and C++
URL: https://github.com/LibreCAD/libdxfrw/
Source0: %{name}-%{version}.tar.xz
BuildRequires: cmake
BuildRequires: gcc-c++
BuildRequires: ninja
%description
libdxfrw is a free C++ library to read and write DXF files in both formats,
ascii and binary form.
%package devel
Summary: Development files for libdxfrw
Group: Development/Libraries/C and C++
Requires: libdxfrw%{so_ver} = %{version}
%description devel
This package includes development files for libdxfrw.
%package tools
Summary: Tools based on libdxfrw
Group: Productivity/Graphics/CAD
%description tools
This package includes tools based on libdxfrw.
%package -n libdxfrw%{so_ver}
Summary: Library to read and write DXF files
Group: System/Libraries
%description -n libdxfrw%{so_ver}
libdxfrw is a free C++ library to read and write DXF files in both formats,
ascii and binary form.
%prep
%autosetup -p1
%build
%define __builder ninja
%cmake
%cmake_build
%install
%cmake_install
%post -n libdxfrw%{so_ver} -p /sbin/ldconfig
%postun -n libdxfrw%{so_ver} -p /sbin/ldconfig
%files devel
%defattr(-,root,root,-)
%doc AUTHORS ChangeLog README TODO
%license COPYING
%{_includedir}/libdxfrw/
%{_libdir}/pkgconfig/libdxfrw.pc
%dir %{_libdir}/cmake/libdxfrw/
%{_libdir}/cmake/libdxfrw/*.cmake
%{_libdir}/libdxfrw.so
%files tools
%defattr(-,root,root,-)
%doc AUTHORS ChangeLog README TODO
%license COPYING
%{_bindir}/dwg2dxf
%{_mandir}/man1/dwg2dxf.1.gz
%files -n libdxfrw%{so_ver}
%defattr(-,root,root,-)
%{_libdir}/libdxfrw.so.%{so_ver}*
%changelog