# Maintainer: Caleb Maclennan # Maintainer: Lukas Fleischer # Contributor: alba4k pkgname=hyprutils pkgver=0.14.2 pkgrel=10 pkgdesc='Hyprland utilities library used across the ecosystem' arch=(x86_64) url="https://github.com/hyprwm/$pkgname" license=(BSD-3-Clause) depends=(pixman libpixman-1.so) makedepends=(cmake) # checkdepends=(gtest) provides=(libhyprutils.so) _archive="$pkgname-$pkgver" source=("$url/archive/v$pkgver/$_archive.tar.gz") sha256sums=('2061b7b08c8104fb02a609553b28f6c8580e5ec38633015845f1c4553980175b') build() { cd "$_archive" local cmake_options=( -D CMAKE_BUILD_TYPE=Release -D CMAKE_INSTALL_PREFIX=/usr -D BUILD_TESTING=False ) cmake -W no-dev ${cmake_options[@]} -S . -B ./build cmake --build build } package() { cd "$_archive" DESTDIR="$pkgdir" cmake --install build install -Dm0644 -t "$pkgdir/usr/share/licenses/$pkgname/" LICENSE }