1
0
forked from ports/contrib
contrib/waylandpp/Pkgfile

24 lines
673 B
Plaintext
Raw Normal View History

# Description: Wayland C++ bindings
# URL: https://github.com/NilsBrause/waylandpp
# Maintainer: Tim Biermann, tbier at posteo dot de
2023-08-24 23:06:10 +02:00
# Depends on: egl-wayland pugixml
name=waylandpp
2022-04-25 23:07:57 +02:00
version=1.0.0
release=1
2023-08-24 23:06:10 +02:00
source=(https://github.com/NilsBrause/waylandpp/archive/$version/$name-$version.tar.gz
waylandpp-1.0.0-gcc13.patch)
build() {
2023-08-24 23:06:10 +02:00
patch -Np1 -d $name-$version -i $SRC/waylandpp-1.0.0-gcc13.patch
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" \
-Wno-dev
cmake --build build
DESTDIR=$PKG cmake --install build
}