kde-plasma-6/plasma-workspace/Pkgfile

27 lines
1012 B
Plaintext
Raw Normal View History

2024-03-17 22:01:17 +01:00
# Description: The base for Plasma Desktop, Mobile, and Bigscreen containing shared KCMs, applets and multiple libraries
# URL: https://kde.org/plasma-desktop/
# Maintainer: CRUX KDE Ports, kde-ports at crux dot nu
# Depends on: baloo kholidays knotifyconfig krunner kstatusnotifieritem ktexteditor kunitconversion kuserfeedback kwallet kwin libksysguard libqalculate networkmanager-qt phonon pipewire plasma-activities-stats plasma5support polkit-qt-1 prison
2024-03-17 22:01:17 +01:00
name=plasma-workspace
version=6.0.1
release=1
source=(https://download.kde.org/stable/plasma/$version/$name-$version.tar.xz)
build() {
cmake -S $name-$version -B build \
-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: