package created using the webbuild interface [release 20.12.1-1mamba;Mon Jan 25 2021]

This commit is contained in:
Silvan Calarco 2024-01-06 02:33:23 +01:00
parent cba4ae83f2
commit 4ea76344b8
2 changed files with 105 additions and 0 deletions

View File

@ -1,2 +1,4 @@
# kosmindoormap # kosmindoormap
A library and QML component for rendering multi-level OSM indoor maps of for example a (large) train station.

103
kosmindoormap.spec Normal file
View File

@ -0,0 +1,103 @@
%define majver %(echo %version | cut -d. -f1-2)
Name: kosmindoormap
Version: 20.12.1
Release: 1mamba
Summary: A library and QML component for rendering multi-level OSM indoor maps
Group: Graphical Desktop/Applications/Graphics
Vendor: openmamba
Distribution: openmamba
Packager: Silvan Calarco <silvan.calarco@mambasoft.it>
URL: http://www.kde.org
Source: https://download.kde.org/stable/release-service/%{version}/src/kosmindoormap-%{version}.tar.xz
License: BSD, LGPL, MIT
## AUTOBUILDREQ-BEGIN
BuildRequires: glibc-devel
BuildRequires: ldconfig
BuildRequires: libgcc
BuildRequires: libki18n-devel
BuildRequires: libkpublictransport-devel
BuildRequires: libprotobuf-devel
BuildRequires: libqt5-devel
BuildRequires: libstdc++6-devel
BuildRequires: libz-devel
## AUTOBUILDREQ-END
BuildRequires: cmake
BuildRequires: rpm-macros-kde5
BuildRequires: extra-cmake-modules
Requires: lib%{name} = %{?epoch:%epoch:}%{version}-%{release}
BuildRoot: %{_tmppath}/%{name}-%{version}-root
%description
A library and QML component for rendering multi-level OSM indoor maps of for example a (large) train station.
%package -n lib%{name}
Group: System/Libraries
Summary: A library and QML component for rendering multi-level OSM indoor maps
%description -n lib%{name}
A library and QML component for rendering multi-level OSM indoor maps of for example a (large) train station.
This package contains shared libraries for %{name}.
%package -n lib%{name}-devel
Group: Development/Libraries
Summary: Development files for %{name}
Requires: lib%{name} = %{?epoch:%epoch:}%{version}-%{release}
%description -n lib%{name}-devel
This package contains libraries and header files for developing applications that use %{name}.
%debug_package
%prep
%setup -q
%build
%cmake_kde5 -d build
%make
%install
[ "%{buildroot}" != / ] && rm -rf "%{buildroot}"
%makeinstall -C build
%find_lang %{name}5_qt --with-qt --with-man --with-html --all-name || touch %{name}5_qt.lang
%clean
[ "%{buildroot}" != / ] && rm -rf "%{buildroot}"
%post -n lib%{name}
/sbin/ldconfig
exit 0
%postun -n lib%{name}
/sbin/ldconfig
exit 0
%files -n lib%{name} -f %{name}5_qt.lang
%defattr(-,root,root)
%{_libdir}/libKOSM.so.*
%{_libdir}/libKOSMIndoorMap.so.*
%dir %{_libdir}/qt5/qml/org/kde/kosmindoormap
%{_libdir}/qt5/qml/org/kde/kosmindoormap/*
%{_datadir}/qlogging-categories5/org_kde_kosmindoormap.categories
%doc LICENSES/*
%files -n lib%{name}-devel
%defattr(-,root,root)
%dir %{_includedir}/KOSM
%{_includedir}/KOSM/*
%dir %{_includedir}/KOSMIndoorMap
%{_includedir}/KOSMIndoorMap/*
%dir %{_includedir}/kosm
%{_includedir}/kosm/*
%dir %{_includedir}/kosmindoormap
%{_includedir}/kosmindoormap/*
%{_includedir}/kosmindoormap_version.h
%dir %{_libdir}/cmake/KOSMIndoorMap
%{_libdir}/cmake/KOSMIndoorMap/KOSMIndoorMap*.cmake
%{_libdir}/libKOSM.so
%{_libdir}/libKOSMIndoorMap.so
%changelog
* Mon Jan 25 2021 Silvan Calarco <silvan.calarco@mambasoft.it> 20.12.1-1mamba
- package created using the webbuild interface