23 lines
651 B
Plaintext
23 lines
651 B
Plaintext
# Description: Extra cmake modules
|
|
# URL: https://github.com/KDE/extra-cmake-modules
|
|
# Maintainer: Tim Biermann, tbier at posteo dot de
|
|
# Depends on: ninja
|
|
|
|
name=extra-cmake-modules
|
|
version=5.115.0
|
|
release=1
|
|
source=(https://invent.kde.org/frameworks/extra-cmake-modules/-/archive/v$version/extra-cmake-modules-v$version.tar.bz2)
|
|
|
|
build() {
|
|
cmake -S $name-v$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
|
|
}
|