diff --git a/README.md b/README.md index 8815598..491a3f4 100644 --- a/README.md +++ b/README.md @@ -1,2 +1,4 @@ # kosmindoormap +A library and QML component for rendering multi-level OSM indoor maps of for example a (large) train station. + diff --git a/kosmindoormap.spec b/kosmindoormap.spec new file mode 100644 index 0000000..28916d1 --- /dev/null +++ b/kosmindoormap.spec @@ -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 +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 20.12.1-1mamba +- package created using the webbuild interface