This commit is contained in:
Kosa Matyas 2026-01-16 10:17:51 +02:00
parent 703666acec
commit c162df2f35
No known key found for this signature in database
GPG key ID: F2CB939C8AA67892
2 changed files with 4 additions and 4 deletions

View file

@ -1,6 +1,6 @@
pkgbase = hyprkcs-git
pkgdesc = A fast, minimal Hyprland keybind cheat sheet and editor written in Rust/GTK4
pkgver = 1.12.7
pkgver = 1.12.8
pkgrel = 1
url = https://github.com/kosa12/hyprKCS
arch = x86_64
@ -14,6 +14,7 @@ pkgbase = hyprkcs-git
depends = gcc-libs
provides = hyprkcs
conflicts = hyprkcs
options = !lto
source = hyprkcs::git+https://github.com/kosa12/hyprKCS.git
validpgpkeys = D2059131FDE2EECC7C90A549F2CB939C8AA67892
sha256sums = SKIP

View file

@ -1,6 +1,6 @@
# Maintainer: Kosa Matyas <kosa03matyas@gmail.com>
pkgname=hyprkcs-git
pkgver=1.12.7
pkgver=1.12.8
pkgrel=1
pkgdesc="A fast, minimal Hyprland keybind cheat sheet and editor written in Rust/GTK4"
arch=('x86_64')
@ -8,6 +8,7 @@ url="https://github.com/kosa12/hyprKCS"
license=('MIT')
depends=('gtk4' 'libadwaita' 'glibc' 'gcc-libs')
makedepends=('cargo' 'git' 'pkgconf')
options=('!lto')
provides=("${pkgname%-git}")
conflicts=("${pkgname%-git}")
source=("${pkgname%-git}::git+$url.git")
@ -21,13 +22,11 @@ pkgver() {
prepare() {
cd "$srcdir/${pkgname%-git}"
export RUSTUP_TOOLCHAIN=stable
cargo fetch --target "$CARCH-unknown-linux-gnu"
}
build() {
cd "$srcdir/${pkgname%-git}"
export RUSTUP_TOOLCHAIN=stable
export CARGO_TARGET_DIR=target
cargo build --release --all-features
}