kde-plasma-6/discover/Pkgfile

31 lines
966 B
Plaintext
Raw Normal View History

2024-03-17 22:01:17 +01:00
# Description: Helps you find and install applications, games, and tools
# URL: https://kde.org/plasma-desktop/
# Maintainer: CRUX KDE Ports, kde-ports at crux dot nu
# Depends on: appstream kcmutils kidletime kirigami-addons knewstuff kstatusnotifieritem kuserfeedback purpose
2024-03-17 22:01:17 +01:00
name=discover
2024-04-19 00:11:30 +02:00
version=6.0.4
2024-04-03 23:27:08 +02:00
release=1
source=(https://download.kde.org/stable/plasma/$version/$name-$version.tar.xz \
discover.conf)
2024-03-17 22:01:17 +01:00
build() {
cmake -S $name-$version -B build -G Ninja \
2024-03-17 22:01:17 +01:00
-D CMAKE_INSTALL_PREFIX=/usr \
-D CMAKE_INSTALL_LIBDIR=lib \
2024-03-20 04:24:41 +01:00
-D CMAKE_INSTALL_LIBEXECDIR=lib \
2024-03-17 22:01:17 +01:00
-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
rm -r $PKG/usr/share/locale
install -m 0644 -D $SRC/discover.conf $PKG/etc/ld.so.conf.d/discover.conf
2024-03-17 22:01:17 +01:00
}
# vim: set ts=4 et: