25 lines
611 B
Bash
25 lines
611 B
Bash
|
# 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"
|
||
|
}
|