chore: bump version to 0.1.2

Sync Cargo.toml to 0.1.2 and bring PKGBUILD up to date (was stale at
0.1.0): pin the git source to the release tag for reproducible builds
and install the LICENSE file.
This commit is contained in:
2026-06-10 16:41:42 +02:00
parent 8a9f31f1b4
commit e364f4edec
3 changed files with 5 additions and 4 deletions
Generated
+1 -1
View File
@@ -144,7 +144,7 @@ checksum = "1d07550c9036bf2ae0c684c4297d503f838287c83c53686d05370d0e139ae570"
[[package]] [[package]]
name = "corsairctl" name = "corsairctl"
version = "0.1.1" version = "0.1.2"
dependencies = [ dependencies = [
"alsa", "alsa",
"clap", "clap",
+1 -1
View File
@@ -1,6 +1,6 @@
[package] [package]
name = "corsairctl" name = "corsairctl"
version = "0.1.1" version = "0.1.2"
edition = "2024" edition = "2024"
description = "CLI tool for Corsair Bragi-protocol devices (HS80, etc.)" description = "CLI tool for Corsair Bragi-protocol devices (HS80, etc.)"
license = "MIT" license = "MIT"
+3 -2
View File
@@ -1,6 +1,6 @@
# Maintainer: nevaforget <dom@moonarch.de> # Maintainer: nevaforget <dom@moonarch.de>
pkgname=corsairctl pkgname=corsairctl
pkgver=0.1.0 pkgver=0.1.2
pkgrel=1 pkgrel=1
pkgdesc='CLI tool for Corsair Bragi-protocol devices (HS80 RGB Wireless, etc.)' pkgdesc='CLI tool for Corsair Bragi-protocol devices (HS80 RGB Wireless, etc.)'
arch=('x86_64') arch=('x86_64')
@@ -8,7 +8,7 @@ url='https://gitea.moonarch.de/nevaforget/corsairctl'
license=('MIT') license=('MIT')
depends=('hidapi' 'alsa-lib') depends=('hidapi' 'alsa-lib')
makedepends=('cargo' 'pkg-config') makedepends=('cargo' 'pkg-config')
source=("git+${url}.git") source=("git+${url}.git#tag=v$pkgver")
sha256sums=('SKIP') sha256sums=('SKIP')
prepare() { prepare() {
@@ -29,4 +29,5 @@ package() {
install -Dm755 "target/release/$pkgname" "$pkgdir/usr/bin/$pkgname" install -Dm755 "target/release/$pkgname" "$pkgdir/usr/bin/$pkgname"
install -Dm755 "scripts/corsairctl-waybar.sh" "$pkgdir/usr/bin/corsairctl-waybar" install -Dm755 "scripts/corsairctl-waybar.sh" "$pkgdir/usr/bin/corsairctl-waybar"
install -Dm644 "udev/99-corsair.rules" "$pkgdir/usr/lib/udev/rules.d/99-corsair.rules" install -Dm644 "udev/99-corsair.rules" "$pkgdir/usr/lib/udev/rules.d/99-corsair.rules"
install -Dm644 "LICENSE" "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
} }