# Maintainer: Graeme Gott pkgname=cutemaze pkgver=1.3.3 pkgrel=1 pkgdesc='Top-down maze game' arch=('x86_64') url="https://gottcode.org/${pkgname}/" license=('GPL3') depends=('qt6-base' 'qt6-svg') makedepends=('cmake' 'qt6-tools') source=("https://gottcode.org/${pkgname}/${pkgname}-${pkgver}.tar.bz2") sha256sums=('5af6de035ce0686c791f0e49798ad85fbd8c270dcebb556701b07a47a634469c') build() { cmake -B build -S "${pkgname}-${pkgver}" \ -DCMAKE_BUILD_TYPE='None' \ -DCMAKE_INSTALL_PREFIX='/usr' \ -Wno-dev cmake --build build } package() { DESTDIR="$pkgdir" cmake --install build }