forked from ports/kde-plasma-6
Tsaop
db0cf6548d
This updates plasma-wayland-protocols to 1.14.0 and pulseaudio-qt to 1.6.0 Co-authored-by: Tim Biermann <tbier@posteo.de> Reviewed-on: ports/kde-plasma-6#20 Co-authored-by: Tsaop <leeroy@cock.li> Co-committed-by: Tsaop <leeroy@cock.li>
25 lines
748 B
Plaintext
25 lines
748 B
Plaintext
# Description: Provides the xml files of the non-standard wayland protocols we use in Plasma
|
|
# URL: https://kde.org/plasma-desktop/
|
|
# Maintainer: CRUX KDE Ports, kde-ports at crux dot nu
|
|
# Depends on: extra-cmake-modules
|
|
|
|
name=plasma-wayland-protocols
|
|
version=1.14.0
|
|
release=1
|
|
source=(https://download.kde.org/stable/$name/$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" \
|
|
-D BUILD_TESTING=OFF \
|
|
-Wno-dev
|
|
cmake --build build
|
|
DESTDIR=$PKG cmake --install build
|
|
}
|
|
|
|
# vim: set ts=4 et:
|