removed cmake Release flag

This commit is contained in:
alba4k 2024-12-17 22:07:09 +01:00
parent d51e8f5f75
commit 6dbbdb8af3
No known key found for this signature in database
GPG key ID: 40F6D8F24DFAB91B
2 changed files with 4 additions and 3 deletions

View file

@ -3,7 +3,8 @@ pkgbase = hyprgraphics-git
pkgver = 0.1.0.r0.g4d927a52
pkgrel = 1
url = https://github.com/hyprwm/hyprgraphics
arch = any
arch = x86_64
arch = aarch64
license = BSD-3-Clause
makedepends = git
makedepends = cmake

View file

@ -5,7 +5,7 @@ pkgname="${_pkgname}-git"
pkgver=0.1.0.r0.g4d927a52
pkgrel=1
pkgdesc="Hyprland graphics / resource utilities"
arch=(any)
arch=(x86_64 aarch64)
url="https://github.com/hyprwm/hyprgraphics"
license=('BSD-3-Clause')
depends=('pixman' 'cairo' 'hyprutils-git' 'libjpeg' 'libwebp' 'libjxl' 'file')
@ -23,7 +23,7 @@ pkgver() {
build() {
cd "${srcdir}/${_pkgname}"
cmake --no-warn-unused-cli -DCMAKE_BUILD_TYPE:STRING=Release -DCMAKE_INSTALL_PREFIX=/usr -S . -B ./build
cmake --no-warn-unused-cli -DCMAKE_INSTALL_PREFIX=/usr -S . -B ./build
cmake --build ./build --config Release --target hyprgraphics
}