kde-plasma-6/extra-cmake-modules/Pkgfile

23 lines
619 B
Plaintext
Raw Normal View History

2024-03-17 22:01:17 +01:00
# 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
2024-04-13 13:36:13 +02:00
version=6.1.0
2024-03-17 22:01:17 +01:00
release=1
2024-04-13 13:36:13 +02:00
source=(https://download.kde.org/stable/frameworks/${version%.*}/$name-$version.tar.xz)
2024-03-17 22:01:17 +01:00
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
}