kmbox: initial commit, version 24.02.2

This commit is contained in:
Tim Biermann 2024-04-14 19:09:04 +02:00
parent 7c901249dd
commit cde4c4f639
Signed by untrusted user: tb
GPG Key ID: 42F8B4E30B673606
3 changed files with 55 additions and 0 deletions

26
kmbox/.footprint Normal file
View File

@ -0,0 +1,26 @@
drwxr-xr-x root/root usr/
drwxr-xr-x root/root usr/include/
drwxr-xr-x root/root usr/include/KPim6/
drwxr-xr-x root/root usr/include/KPim6/KMbox/
drwxr-xr-x root/root usr/include/KPim6/KMbox/KMbox/
-rw-r--r-- root/root usr/include/KPim6/KMbox/KMbox/MBox
-rw-r--r-- root/root usr/include/KPim6/KMbox/KMbox/MBoxEntry
drwxr-xr-x root/root usr/include/KPim6/KMbox/kmbox/
-rw-r--r-- root/root usr/include/KPim6/KMbox/kmbox/kmbox_export.h
-rw-r--r-- root/root usr/include/KPim6/KMbox/kmbox/mbox.h
-rw-r--r-- root/root usr/include/KPim6/KMbox/kmbox/mboxentry.h
-rw-r--r-- root/root usr/include/KPim6/KMbox/kmbox_version.h
drwxr-xr-x root/root usr/lib/
drwxr-xr-x root/root usr/lib/cmake/
drwxr-xr-x root/root usr/lib/cmake/KPim6Mbox/
-rw-r--r-- root/root usr/lib/cmake/KPim6Mbox/KPim6MboxConfig.cmake
-rw-r--r-- root/root usr/lib/cmake/KPim6Mbox/KPim6MboxConfigVersion.cmake
-rw-r--r-- root/root usr/lib/cmake/KPim6Mbox/KPim6MboxTargets-release.cmake
-rw-r--r-- root/root usr/lib/cmake/KPim6Mbox/KPim6MboxTargets.cmake
lrwxrwxrwx root/root usr/lib/libKPim6Mbox.so -> libKPim6Mbox.so.6
lrwxrwxrwx root/root usr/lib/libKPim6Mbox.so.6 -> libKPim6Mbox.so.6.0.2
-rwxr-xr-x root/root usr/lib/libKPim6Mbox.so.6.0.2
drwxr-xr-x root/root usr/share/
drwxr-xr-x root/root usr/share/qlogging-categories6/
-rw-r--r-- root/root usr/share/qlogging-categories6/kmbox.categories
-rw-r--r-- root/root usr/share/qlogging-categories6/kmbox.renamecategories

5
kmbox/.signature Normal file
View File

@ -0,0 +1,5 @@
untrusted comment: verify with /etc/ports/kde-plasma-6.pub
RWTGxEYrvi0p3uO7a98iAzRVvUWxZfMPQBA3F62MfEcBHkLC3z5ZxDH2/Wm2BTr6ttSRUwan8ZOSVLtQav8aTk2SwiCW6FsXig4=
SHA256 (Pkgfile) = 48fa5d2919656261c39fce86447d5f2efcdd07a59aa830947fbb29d099395b04
SHA256 (.footprint) = 7dba50206c9a84112f7995513d9b6e16dd1c8243b45af134d3548ddca52c025c
SHA256 (kmbox-24.02.2.tar.xz) = 6facf4ec5cd053cde3e2d34799ea7276a648e107635e0fc0a21b41eae65c3e8f

24
kmbox/Pkgfile Normal file
View File

@ -0,0 +1,24 @@
# Description: Job-based library to send email through an SMTP server
# URL: https://kontact.kde.org/
# Maintainer: CRUX KDE Ports, kde-ports at crux dot nu
# Depends on: kmime
name=kmbox
version=24.02.2
release=1
source=(http://download.kde.org/stable/release-service/$version/src/$name-$version.tar.xz)
build() {
cmake -S $name-$version -B build -G Ninja \
-D CMAKE_INSTALL_PREFIX=/usr \
-D CMAKE_INSTALL_LIBDIR=lib \
-D CMAKE_BUILD_TYPE=Release \
-D CMAKE_CXX_FLAGS_RELEASE="$CXXFLAGS" \
-D CMAKE_C_FLAGS_RELEASE="$CFLAGS" \
-D BUILD_TESTING=OFF \
-Wno-dev
cmake --build build
DESTDIR=$PKG cmake --install build
}
# vim: set ts=4 et: