This commit is contained in:
Alex Janka 2024-07-24 16:11:02 +10:00
parent b5faff6871
commit 2a25fca874
2 changed files with 26 additions and 0 deletions

2
.gitignore vendored
View file

@ -1 +1,3 @@
/target /target
packaging/*/
packaging/sway-flash-indicator*

24
packaging/PKGBUILD Normal file
View file

@ -0,0 +1,24 @@
# Maintainer: Alex Janka <alex@alexjanka.com>
pkgname=sway-flash-indicator
pkgver=0.1.0
pkgrel=1
pkgdesc="flashes sway indicator border rather than always showing it"
arch=('x86_64' 'aarch64')
url="https://git.alexjanka.com/alex/sway-flash-indicator"
license=('custom')
makedepends=('cargo')
source=("sway-flash-indicator::git+https://git.alexjanka.com/alex/sway-flash-indicator")
sha512sums=('SKIP')
build() {
cd "sway-flash-indicator"
cargo build --release --locked
}
package() {
cd "sway-flash-indicator"
install -Dm755 "target/release/sway-flash-indicator" "$pkgdir/usr/bin/sway-flash-indicator"
}