forked from ports/kde-plasma-6
26 lines
711 B
Plaintext
26 lines
711 B
Plaintext
# Description: C++ Coroutines for Qt
|
|
# URL: https://github.com/danvratil/qcoro
|
|
# Maintainer: CRUX KDE Ports, kde-ports at crux dot nu
|
|
# Depends on: qt6-websockets
|
|
|
|
name=qcoro
|
|
version=0.11.0
|
|
release=1
|
|
source=(https://github.com/danvratil/qcoro/archive/v$version/$name-$version.tar.gz)
|
|
|
|
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 -fPIC" \
|
|
-D BUILD_TESTING=OFF \
|
|
-D USE_QT_VERSION=6 \
|
|
-D BUILD_SHARED_LIBS=ON \
|
|
-Wno-dev
|
|
cmake --build build
|
|
DESTDIR=$PKG cmake --install build
|
|
}
|
|
|
|
# vim: set ts=4 et:
|