kde-plasma-6/extra-cmake-modules/Pkgfile
2024-03-17 16:01:17 -05:00

23 lines
609 B
Plaintext

# Description: Extra cmake modules
# URL: https://github.com/KDE/extra-cmake-modules
# Maintainer: CRUX KDE Ports, kde-ports at crux dot nu
# Depends on: ninja
name=extra-cmake-modules
version=6.0.0
release=1
source=(https://download.kde.org/stable/frameworks/6.0/$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" \
-Wno-dev
cmake --build build
DESTDIR=$PKG cmake --install build
}