forked from ports/kde-plasma-6
26 lines
798 B
Plaintext
26 lines
798 B
Plaintext
# Description: Integration of Qt application with KDE workspaces
|
|
# URL: https://community.kde.org/Frameworks
|
|
# Maintainer: CRUX KDE Ports, kde-ports at crux dot nu
|
|
# Depends on: kiconthemes knewstuff knotifications
|
|
|
|
name=frameworkintegration
|
|
version=6.7.0
|
|
release=1
|
|
source=(https://download.kde.org/stable/frameworks/${version%.*}/$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_INSTALL_LIBEXECDIR=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:
|