akonadi-notes: initial commit, version 24.02.2

This commit is contained in:
Tim Biermann 2024-04-14 19:33:23 +02:00
parent 439395a597
commit 67e343e06c
Signed by untrusted user: tb
GPG Key ID: 42F8B4E30B673606
3 changed files with 53 additions and 0 deletions

22
akonadi-notes/.footprint Normal file
View File

@ -0,0 +1,22 @@
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/AkonadiNotes/
drwxr-xr-x root/root usr/include/KPim6/AkonadiNotes/Akonadi/
-rw-r--r-- root/root usr/include/KPim6/AkonadiNotes/Akonadi/NoteUtils
-rw-r--r-- root/root usr/include/KPim6/AkonadiNotes/akonadi-notes_version.h
drwxr-xr-x root/root usr/include/KPim6/AkonadiNotes/akonadi/
-rw-r--r-- root/root usr/include/KPim6/AkonadiNotes/akonadi/NoteUtils
-rw-r--r-- root/root usr/include/KPim6/AkonadiNotes/akonadi/akonadi-notes_export.h
-rw-r--r-- root/root usr/include/KPim6/AkonadiNotes/akonadi/noteutils.h
drwxr-xr-x root/root usr/lib/
drwxr-xr-x root/root usr/lib/cmake/
drwxr-xr-x root/root usr/lib/cmake/KPim6AkonadiNotes/
-rw-r--r-- root/root usr/lib/cmake/KPim6AkonadiNotes/KPim6AkonadiNotesConfig.cmake
-rw-r--r-- root/root usr/lib/cmake/KPim6AkonadiNotes/KPim6AkonadiNotesConfigVersion.cmake
-rw-r--r-- root/root usr/lib/cmake/KPim6AkonadiNotes/KPim6AkonadiNotesTargets-release.cmake
-rw-r--r-- root/root usr/lib/cmake/KPim6AkonadiNotes/KPim6AkonadiNotesTargets.cmake
lrwxrwxrwx root/root usr/lib/libKPim6AkonadiNotes.so -> libKPim6AkonadiNotes.so.6
lrwxrwxrwx root/root usr/lib/libKPim6AkonadiNotes.so.6 -> libKPim6AkonadiNotes.so.6.0.2
-rwxr-xr-x root/root usr/lib/libKPim6AkonadiNotes.so.6.0.2
drwxr-xr-x root/root usr/share/

5
akonadi-notes/.signature Normal file
View File

@ -0,0 +1,5 @@
untrusted comment: verify with /etc/ports/kde-plasma-6.pub
RWTGxEYrvi0p3rLnxId3JP/Se7V4fiUYWTbF3j5AWLLEykwpAyW1Ikp/lRBXDVEnRDxmYy9MJMCKCjiaq5gAqi6DicW5/3fNoAI=
SHA256 (Pkgfile) = f621b476bdd345f6b1479d90198b5123dc9b4db517c0a0f98bb87165a1d7c93f
SHA256 (.footprint) = 96ff7ca96a0cc5092b43b1dc5652657aa5f94266bea0a78b6a622422811faab8
SHA256 (akonadi-notes-24.02.2.tar.xz) = 0404d7ad8aec7b8838b3909d9cf222d267f4d6f3b51f26bd8ecca39a7d8b5855

26
akonadi-notes/Pkgfile Normal file
View File

@ -0,0 +1,26 @@
# Description: Libraries and daemons to implement management of notes in Akonadi
# URL: https://kontact.kde.org
# Maintainer: CRUX KDE Ports, kde-ports at crux dot nu
# Depends on: kmime
name=akonadi-notes
version=24.02.2
release=1
source=(https://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
rm -r $PKG/usr/share/locale
}
# vim: set ts=4 et: