libredwg/libredwg.spec

114 lines
3.4 KiB
RPMSpec

#
# spec file for package libredwg
#
# Copyright (c) 2020 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/
#
%define lname libredwg0
Name: libredwg
Version: 0.11
Release: 0
Summary: A library to handle DWG files
License: GPL-3.0-or-later
Group: Development/Libraries/C and C++
URL: https://www.gnu.org/software/libredwg/
#Git-Clone: https://github.com/LibreDWG/libredwg/
Source: https://ftp.gnu.org/pub/gnu/libredwg/%name-%version.tar.xz
Source2: https://ftp.gnu.org/pub/gnu/libredwg/%name-%version.tar.xz.sig
Source3: http://savannah.gnu.org/people/viewgpg.php?user_id=101103#/%name.keyring
Source4: %name-rpmlintrc
BuildRequires: pkgconfig
%description
GNU LibreDWG is a C library to handle DWG files. It can replace the
OpenDWG libraries. DWG is the native file format of AutoCAD.
%package tools
Summary: Command line utilities for handling DWG file
Group: Productivity/File utilities
Requires(post): %install_info_prereq
Requires(preun): %install_info_prereq
# Both packages ship a %%_bindir/dwg2dxf
Conflicts: libdxfrw-tools
%description tools
GNU LibreDWG is a C library to handle DWG files. It can replace the
OpenDWG libraries. DWG is the native file format of AutoCAD.
This package contains some command line utilities using this library.
%package devel
Summary: Development files for libredwg
Group: Development/Libraries/C and C++
Requires: %lname = %version
%description devel
GNU LibreDWG is a C library to handle DWG files. It can replace the
OpenDWG libraries. DWG is the native file format of AutoCAD.
This package contains the files required for development with libredwg.
%package -n %lname
Summary: A library to handle DWG files
Group: System/Libraries
%description -n %lname
GNU LibreDWG is a C library to handle DWG files. It can replace the
OpenDWG libraries. DWG is the native file format of AutoCAD.
%prep
%autosetup -p1
%build
# No management of SO version despite ABI breaking changes:
# Force-add some symvers so RPM can produce meaningful deps.
echo 'V_%version { global: *; };' >src/sv.sym
%configure \
--disable-static
make %{?_smp_mflags} libredwg_la_LDFLAGS=-Wl,-version-script,sv.sym libredwg_la_LIBADD=-lm
%install
%make_install
find %{buildroot} -type f -name "*.la" -delete -print
%post tools
%install_info --info-dir="%_infodir" "%_infodir/LibreDWG.info*.gz"
%preun tools
%install_info_delete --info-dir="%_infodir" "%_infodir/LibreDWG.info*.gz"
%post -n %lname -p /sbin/ldconfig
%postun -n %lname -p /sbin/ldconfig
%files tools
%license COPYING
%_bindir/dwg*
%_bindir/dxf*
%_mandir/man?/*.1%{?ext_man}
%_infodir/LibreDWG.info*%{?ext_info}
%files devel
%license COPYING
%doc AUTHORS ChangeLog NEWS README TODO
%_includedir/*.h
%_libdir/libredwg.so
%_libdir/pkgconfig/libredwg.pc
%files -n %lname
%license COPYING
%_libdir/*.so.*
%changelog