kde-plasma-6/libkdcraw/Pkgfile

26 lines
788 B
Plaintext

# Description: C++ interface around LibRaw library used to decode RAW picture files
# URL: https://apps.kde.org/it/
# Maintainer: CRUX KDE Ports, kde-ports at crux dot nu
# Depends on: extra-cmake-modules libraw qt6-base
name=libkdcraw
version=24.02.2
source=(http://download.kde.org/stable/release-service/$version/src/$name-$version.tar.xz)
release=1
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" \
-D BUILD_TESTING=OFF \
-D QT_MAJOR_VERSION=6 \
-Wno-dev
cmake --build build
DESTDIR=$PKG cmake --install build
}
# vim: set ts=4 et: