# Maintainer: Alexander Samoylenko pkgname=xidlehook pkgver=0.6.0 pkgrel=1 pkgdesc="xautolock rewrite in Rust, with a few extra features" url="https://github.com/jD91mZM2/xidlehook" arch=("x86_64") license=("MIT") makedepends=("rust" "libxss") optdepends=() depends=("libpulse") source=("https://github.com/jD91mZM2/$pkgname/archive/$pkgver.tar.gz") sha256sums=('4f4b7a84ca7b53f28f2207e3d1b0b4dec804d3304802dadf9d522e64a4052ab7') build() { cd "$srcdir/$pkgname-$pkgver" cargo build --release } package() { cd "$srcdir/$pkgname-$pkgver" install -Dm 644 "LICENSE" "$pkgdir/usr/share/licenses/$pkgname/LICENSE" install -Dm 755 "target/release/$pkgname" "$pkgdir/usr/bin/$pkgname" }