package created using the webbuild interface [release 20.12.1-1mamba;Mon Jan 25 2021]
This commit is contained in:
parent
963b60d6ba
commit
2b518fd27b
@ -1,2 +1,4 @@
|
||||
# kpublictransport
|
||||
|
||||
A library for accessing realtime public transport data and for performing public transport journey queries.
|
||||
|
||||
|
93
kpublictransport.spec
Normal file
93
kpublictransport.spec
Normal file
@ -0,0 +1,93 @@
|
||||
%define majver %(echo %version | cut -d. -f1-2)
|
||||
|
||||
Name: kpublictransport
|
||||
Version: 20.12.1
|
||||
Release: 1mamba
|
||||
Summary: A library for accessing realtime public transport data and for performing public transport journey queries
|
||||
Group: System/Libraries
|
||||
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/kpublictransport-%{version}.tar.xz
|
||||
License: LGPL, BSD
|
||||
## AUTOBUILDREQ-BEGIN
|
||||
BuildRequires: glibc-devel
|
||||
BuildRequires: ldconfig
|
||||
BuildRequires: libgcc
|
||||
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 for accessing realtime public transport data and for performing public transport journey queries.
|
||||
|
||||
%package -n lib%{name}
|
||||
Group: System/Libraries
|
||||
Summary: A library for accessing realtime public transport data and for performing public transport journey queries
|
||||
|
||||
%description -n lib%{name}
|
||||
A library for accessing realtime public transport data and for performing public transport journey queries.
|
||||
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
|
||||
|
||||
%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}
|
||||
%defattr(-,root,root)
|
||||
%{_libdir}/libKPublicTransport.so.*
|
||||
%dir %{_libdir}/qt5/qml/org/kde/kpublictransport
|
||||
%{_libdir}/qt5/qml/org/kde/kpublictransport/*
|
||||
%{_datadir}/qlogging-categories5/org_kde_kpublictransport.categories
|
||||
%doc LICENSES/*
|
||||
|
||||
%files -n lib%{name}-devel
|
||||
%defattr(-,root,root)
|
||||
%{_includedir}/kpublictransport_version.h
|
||||
%dir %{_includedir}/KPublicTransport
|
||||
%{_includedir}/KPublicTransport/*
|
||||
%dir %{_includedir}/kpublictransport
|
||||
%{_includedir}/kpublictransport/*
|
||||
%dir %{_libdir}/cmake/KPublicTransport
|
||||
%{_libdir}/cmake/KPublicTransport/KPublicTransport*.cmake
|
||||
%{_libdir}/libKPublicTransport.so
|
||||
|
||||
%changelog
|
||||
* Mon Jan 25 2021 Silvan Calarco <silvan.calarco@mambasoft.it> 20.12.1-1mamba
|
||||
- package created using the webbuild interface
|
Loading…
Reference in New Issue
Block a user