Add kio-extras and kdnssd #3

Merged
tb merged 3 commits from Leeroy/kde-plasma-6:3.7 into 3.7 2024-04-23 22:18:57 +02:00
2 changed files with 2256 additions and 0 deletions
Showing only changes of commit 6e1fe00854 - Show all commits

2232
kio-extras/.footprint Normal file

File diff suppressed because it is too large Load Diff

24
kio-extras/Pkgfile Normal file
View File

@ -0,0 +1,24 @@
# Description: Additional components to increase the functionality of KIO
# URL: https://apps.kde.org
# Maintainer: CRUX KDE Ports, kde-ports at crux dot nu
# Depends on: kcmutils kdnssd ktextwidgets phonon plasma-activities-stats qcoro syntax-highlighting
name=kio-extras
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
}
# vim: set ts=4 et: