kde-plasma-6/kaccounts-integration/Pkgfile

28 lines
846 B
Plaintext
Raw Normal View History

# Description: Integration library and QML module for Accounts-SSO and SignOn-SSO
# URL: https://www.kde.org/
# Maintainer: CRUX KDE Ports, kde-ports at crux dot nu
# Depends on: kcmutils kirigami kwallet libaccounts-qt qcoro signond
name=kaccounts-integration
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 QT_MAJOR_VERSION=6 \
-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: