Init package

This commit is contained in:
jchzhou 2022-11-15 13:49:02 +08:00
parent 01bfeddb26
commit 2f42424cc6
2 changed files with 97 additions and 0 deletions

BIN
kcalendarcore-5.97.0.tar.xz Normal file

Binary file not shown.

97
kf5-kcalendarcore.spec Normal file
View File

@ -0,0 +1,97 @@
%global framework kcalendarcore
# uncomment to enable bootstrap mode
#global bootstrap 1
%if !0%{?bootstrap}
%global tests 1
%endif
Name: kf5-kcalendarcore
Epoch: 1
Version: 5.97.0
Release: 1
Summary: KCalendarCore - Library for Interfacing with Calendars
License: LGPLv2+ and GPLv3+
URL: https://invent.kde.org/frameworks/%{framework}
%global majmin %(echo %{version} | cut -d. -f1-2)
%global revision %(echo %{version} | cut -d. -f3)
%if %{revision} >= 50
%global stable unstable
%else
%global stable stable
%endif
Source0: http://download.kde.org/%{stable}/frameworks/%{majmin}/%{framework}-%{version}.tar.xz
BuildRequires: make
BuildRequires: extra-cmake-modules >= %{majmin}
BuildRequires: kf5-rpm-macros
BuildRequires: bison
BuildRequires: libical-devel
BuildRequires: qt5-qtbase-devel
%if 0%{?tests}
BuildRequires: dbus-x11
BuildRequires: xorg-x11-server-Xvfb
%endif
%description
%{summary}.
%package devel
Summary: Development files for %{name}
Requires: %{name}%{?_isa} = %{epoch}:%{version}-%{release}
Requires: libical-devel
%description devel
The %{name}-devel package contains libraries and header files for
developing applications that use %{name}.
%prep
%autosetup -n %{framework}-%{version}
%build
mkdir -p %{_target_platform}
pushd %{_target_platform}
%{cmake_kf5} .. \
-DBUILD_TESTING:BOOL=%{?tests:ON}%{!?tests:OFF}
popd
%make_build -C %{_target_platform}
%install
%make_install -C %{_target_platform}
%check
%if 0%{?tests}
export CTEST_OUTPUT_ON_FAILURE=1
xvfb-run -a \
dbus-launch --exit-with-session \
make test ARGS="--output-on-failure --timeout 20" -C %{_target_platform} ||:
%endif
%ldconfig_scriptlets
%files
%license LICENSES/*.txt
%{_kf5_datadir}/qlogging-categories5/*kcalendarcore.*
%{_kf5_libdir}/libKF5CalendarCore.so.*
%files devel
%{_kf5_includedir}/kcal*core_version.h
%{_kf5_includedir}/KCalendarCore/
%{_kf5_libdir}/libKF5CalendarCore.so
%{_kf5_libdir}/cmake/KF5CalendarCore/
%{_kf5_libdir}/pkgconfig/KF5CalendarCore.pc
%{_kf5_archdatadir}/mkspecs/modules/qt_KCalendarCore.pri
%changelog
* Tue Nov 15 2022 jchzhou <zhoujiacheng@iscas.ac.cn> - 1:5.97.0-1
- Init package