contrib/waylandpp/Pkgfile

21 lines
590 B
Plaintext

# Description: Wayland C++ bindings
# URL: https://github.com/NilsBrause/waylandpp
# Maintainer: Tim Biermann, tbier at posteo dot de
# Depends on: egl-wayland pugixml wayland-protocols
name=waylandpp
version=1.0.0
release=1
source=(https://github.com/NilsBrause/waylandpp/archive/$version/$name-$version.zip)
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" \
-Wno-dev
cmake --build build
DESTDIR=$PKG cmake --install build
}